haskins
02-21-2003, 07:47 PM
how do you tell a page to replace a certin word with another specified word everywhere its listed on the page. I don't mean like find and replace I mean like at run time.
|
||||
word replacehaskins 02-21-2003, 07:47 PM how do you tell a page to replace a certin word with another specified word everywhere its listed on the page. I don't mean like find and replace I mean like at run time. beetle 02-21-2003, 08:15 PM Quick & dirty way function replaceWord( word, replacment ) { var pattern = new RegExp( word, "i" ); document.body.innerHTML = document.body.innerHTML.replace( pattern, replacement ); } whammy 02-22-2003, 02:43 AM Best off doing this server-side before the page is returned to the client in many cases - but of course, that depends on your purpose. Which is? |
| |||
EZ Archive Ads Plugin for vBulletin Copyright 2006 Computer Help Forum