How do I display the same image on the same page multiple times?
<head>
<Script language="javascript">
function xdf(){
for (i=0;i<10;i++) {
document.write('<b>hello world</b><br>');
}
}
</script>
</head>
this code displays “hello world” 10 times.
i would like the same thing but with certain image instead of “hello word”…
Change:
Into: