Forum Moderators: open
at thew moment of posting this new topic the search menu was disabled...
hi, look at this page: [search.store.yahoo.com...]
it have nonhtml characters (like \ñ) and then cant be displayed, and as you can see, its a search results page...
in other words: a DOM way to dinamically find and replace the current "ñ" and replace they with a new "ñ".
and i ask for a DOM solution or starting point its because i cant edit the source of that page, and i cant edit the original html in wich contains the "ñ" character either.
do you have an idea about howto "Find and replace character using DOM?"
thanks
function changeLatinN(){
if(!document.getElementsByText) return;
var d, h=document.getElementsByText('ñ');
while(h.length){
(d=document.createText('ñ'));
h[0].parentNode.replaceChild(d,h[0]);
}
} thanks