Sunday, December 03, 2006

Javascript regular expression in Opera

The following Javascript code works in Firefox & Internet Explorer but not in Opera. Different browsers interpret Javascript code differently. $pTxt = $pTxt.replace(/(.|\n)+<\/tag>/g,''); This code works in all three. $pTxt = $pTxt.replace(/[\s\S]+<\/tag>/g,'');

Labels:

0 Comments:

Post a Comment

<< Home