Forum: JavaScript / DHTML / AJAX 27 Days Ago |
| Replies: 2 Views: 311 This can make it 333
Test this code in your addresbar:
javascript: alert(333.33333.toFixed())
implement it if you like it.
You can also do things like:
3215.3248566432.toFixed() //gives... |
Forum: HTML and CSS 30 Days Ago |
| Replies: 51 Views: 2,707 The HTML online validator can't tell where the arror ocurred exactly. Tries to narrow the posibility by selecting the first element the error triggered and the last one suffering it. In this case,... |
Forum: JavaScript / DHTML / AJAX Oct 14th, 2009 |
| Replies: 8 Views: 1,605 Yes, you simply delete it!
Just change the play button code from:
<INPUT TYPE="BUTTON" VALUE="Play" OnClick="Player.controls.play()">
into:
<INPUT TYPE="BUTTON"... |
Forum: JavaScript / DHTML / AJAX Oct 13th, 2009 |
| Replies: 8 Views: 1,605 This is interesting ....[?!?] still haven't found anything working for you on internet?!
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html>... |
Forum: HTML and CSS Oct 12th, 2009 |
| Replies: 3 Views: 400 Some little dumb mistake I'm sure...
p.s.: check the little thingy in red inside your code, That's what's missing here. |
Forum: JavaScript / DHTML / AJAX Oct 12th, 2009 |
| Replies: 5 Views: 458 in fact, there is no such thing as anonymous array, this supposedly "arrray" will be garbage collected as soon as the function has passed over.
Therefore you must initiate/create that array... |
Forum: HTML and CSS Oct 10th, 2009 |
| Replies: 7 Views: 472 So you want them to be looking something like this (see attachment image)?
Add this line in your
CSS
#main img {width:100%} |
Forum: HTML and CSS Oct 10th, 2009 |
| Replies: 3 Views: 353 Delete everything marked RED |
Forum: JavaScript / DHTML / AJAX Oct 8th, 2009 |
| Replies: 4 Views: 544 you will need Exel activeX object for this.
This is a demo code from MSDN:
var ExcelApp = new ActiveXObject("Excel.Application");
var ExcelSheet = new ActiveXObject("Excel.Sheet");
// Make... |
Forum: JavaScript / DHTML / AJAX Oct 3rd, 2009 |
| Replies: 6 Views: 680 good.
this would be your HTML
<form name="dropDown" action="" method="" >
<select name="disposition">
<option value="" >Select Scene</option>
</select>
</form>
this would be the string format... |
Forum: JavaScript / DHTML / AJAX Oct 2nd, 2009 |
| Replies: 9 Views: 579 Nice
I'm puzzled though, why is that code using same id on multiple elements?
And I have another puzzle somebody could answer to me: whose responsibility is to mark threads as solved, :: the... |
Forum: JavaScript / DHTML / AJAX Oct 2nd, 2009 |
| Replies: 10 Views: 937 <html>
<head>
<style type="text/css">
<!--
.fontStyle {
font-family: Verdana, Geneva, sans-serif;
font-size: small;
font-weight: bold;
color: #67A2DC;
} |
Forum: JavaScript / DHTML / AJAX Oct 2nd, 2009 |
| Replies: 9 Views: 579 I've underlined some conflicting statements in your problem description, and the clearance on that part might give some strait forward solution.
That is: if explanation stating that elements are... |
Forum: HTML and CSS Sep 27th, 2009 |
| Replies: 0 Views: 1,063 This code enables you to publish a CSS only with mouse click and keyboard tab image swap.
Attached is a Demo example of how it would look on IE6.
To ensure the greatest possible cross-browser... |
Forum: HTML and CSS Sep 12th, 2009 |
| Replies: 2 Views: 1,068 Yeah, it looks as it should on IE.
All container elements are broken in Netscape based browsers.
This is known as a bleeding fox syndrome bug, or "fox on fire behaviour".
It will drop... |
Forum: JavaScript / DHTML / AJAX Sep 12th, 2009 |
| Replies: 6 Views: 652 function vulpagina() {
var maindiv=document.getElementById("maindiv");
for(i=0; i<26; i++){
var imgnr = i;
var div=document.createElement("div");
var img=document.createElement("img");... |
Forum: HTML and CSS Aug 22nd, 2009 |
| Replies: 5 Views: 631 Here,
First thing you should do is to remove your script from HTML element and place it somewhere before HEADER element closure.
Second:
Something on the right should follow something on its... |
Forum: HTML and CSS Aug 20th, 2009 |
| Replies: 5 Views: 379 stay away from that site and block them.
few notes on interclick.com
http://google.com/safebrowsing/diagnostic?site=interclick.com/
i suggest you block these addresses:
www.interclick.com... |
Forum: HTML and CSS Aug 13th, 2009 |
| Replies: 11 Views: 774 that's because you are doing it the wrong way, -it is the div2 who should have its margins set to auto and there should be no float.
-Here, try this:
.DIV1 {
width: 100%;
height: 70px;
}... |
Forum: JavaScript / DHTML / AJAX Jul 25th, 2008 |
| Replies: 17 Views: 2,093 Well, now that you've learned that quotes can be used only in the logic of parenthesis (*), but not (*] same as "*' etc, and that strings can be added with the + sign and automatically converted into... |
Forum: JavaScript / DHTML / AJAX Jul 23rd, 2008 |
| Replies: 17 Views: 2,093 OK
try: alert("The Sum is:" + total + "; The average is: " + average);, to alert them both in one turn.
try: var largest = Math.max(firstnumber, secondnumber, thirdnumber);
var smallest =... |
Forum: HTML and CSS Jul 23rd, 2008 |
| Replies: 3 Views: 636 try this site (http://layouts.ironmyers.com, might help you alot. |