Hi all of you, Problem: ~300 simple HTML files that have an common image somewhere in body of the page, without span tags or id. In all those files a have a <script src=".../ascript.js></script> in the body tag. I can't change nothing else then the ascript.js file and I need to change the src of that image from all those 300 pages from the .js I foud some information about a script that can find a specific string in the <body></body> of the page and change it automatically with the desired one, when the page loads, without needing IDs and Spans, but I didn't found the script itself. I'll give you an example of how my html file looks: <html> <head> </head> <body> <img src="files/asd.jpg"> <script src="scr/ascript.js></script> </body> </html> So I can't change nothing in that page, just the ascript.js can be modified. Any solutions?
<script> for(var i=0; i<document.images.length;i++) { if(document.images[i].src == "files/asd.jpg") document.images[i].src = "file/new_image.gif"; } </script> HTML: Try the above code...