inherit
Beware the ever changing head
33588
0
Nov 18, 2023 0:32:44 GMT -8
Ross
19,039
November 2004
elindir
|
Post by Ross on Nov 7, 2005 4:01:26 GMT -8
Global Footer
This will convert any image into text. Edit/repeat the red part with the image URLs and text to convert it to.
<script type="text/javascript"> <!-- /* Image to Text */
function Text(image,text) { var img = document.getElementsByTagName('img'); for(i=0; i<img.length; i++) { if(img.src.match(new RegExp(image+'$'))) { var txt = document.createTextNode(text); img.parentNode.replaceChild(txt, img); } } }
Text("Image URL","Text"); Text("Image URL","Text"); Text("Image URL","Text");
//--> </script>
|
|