/ Published in: JavaScript
this code is used to remove the html code in the given string
Expand |
Embed | Plain Text
var StrippedString = OriginalString.replace(/(<([^>]+)>)/ig,"");
You need to login to post a comment.
satinfo30 on 03/05/12
javascript html tags remove using
2 people have marked this snippet as a favorite
this code is used to remove the html code in the given string
var StrippedString = OriginalString.replace(/(<([^>]+)>)/ig,"");
You need to login to post a comment.