I am looking for a JS Regex to remove HTML Tags + the content inside. What I found so far is a simple regex to remove HTML tags, but no divs:
newdata.replace(/<[^>]*>/gi, '');
What I have:
Color<select>
<option value="">Show All</option>
<option value="Black">Black</option><option value="Blue">Blue</option>
</select>
What I need:
Color