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: javascript
0 Comments:
Post a Comment
<< Home