Posted by Fran Garcνa on 01/30/07 16:32
I've a possible solution. You can use some javascript code to replace
all the occurrences with something like this:
myRe2 = new RegExp('Γ bon chat', 'gi');
document.getElementById('only_context').innerHTML = new
String(document.getElementById('only_context').innerHTML).replace(myRe2
,'<b>$&</b>');
You must include the text, that you wanna replace into a div called
'only_context' or whatever.
Navigation:
[Reply to this message]
|