home *** CD-ROM | disk | FTP | other *** search
/ Chip 2003 July / CMCD0703.ISO / Software / Freeware / Comunicatii / slim / sbrowser.exe / biscripts / DeHighlight_Old.js next >
Text File  |  2003-03-20  |  232b  |  6 lines

  1. function DeHighlight(keyword)
  2. {
  3.     var s=document.body.innerHTML;
  4.     var re=new RegExp("<span style=\"background-color: yellow\"><font color=#CC0033>("+keyword+")</font></span>","gi");
  5.     document.body.innerHTML=s.replace(re,"$1");
  6. }