I can't seem to define a for loop function, what am I doing wrong?
My HTML code:
<body onload="generate()">
My Javascript code:
function generate(){
for(i = 0; i < 150; i++) {
document.write("<div></div>");
}
};
|
I can't seem to define a for loop function, what am I doing wrong? My HTML code:
My Javascript code:
|
|||||
|
|
Your loop is fine (other than that you don't declare To manipulate the page after load, you'll want to use the DOM, references:
For instance, here's how you'd write your
Or more usefully, 150 divs with their numbers in:
Separately, if you're going to do any significant DOM manipulation, it's well worth using a good JavaScript browser library like jQuery, Prototype, YUI, Closure, or any of several others. These smooth over browser differences (and outright bugs), provide useful utility functions, and generally let you concentrate on what you're actually trying to do rather than fiddling about with inconsistencies between IE and Chrome, Opera and Safari... |
|||||
|
|
The document.write mentioned in http://stackoverflow.com/q/8257414/295783 is the reason it does not work. The first document.write wipes the page including the script that is executing. A better way is
|
|||
|
|
This should work, didn't test it though. It's important to wait for the 'DOMContenLoaded' event, because else some elements might not exist at the time your script was executed. |
||||
|
|
|
do the folowing;
|
|||||||
|