/ Published in: JavaScript
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
<script type="text/javascript" ?> function maeda_repeater(img, count) { document.write("<div style='clear:both;></div>"); for (var x = 1; x <= count; x++) { document.write("<img src='" + img + "' alt='" + count + "' style='float:left; margin:2px;' />"); } document.write("<div style='clear:both;></div>"); } repeat("spring.gif", 100); </script>