Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
var str = "something<div id='testid' class='test'><p>This is the body</p></div><div>some other div</div><div id='testid' class='test'><p>This is the body</p></div>hahahah";
var re = /(.*?)(\<div\s+.*?id\s*\=.*?\>)(.*?)(\<\/div\>)(.*?)/gi;
var newstr = str.replace( re, "$1$3$5" );
alert( newstr );