I want to remove — from the form below.
<form id="product-search" action="" method="get">
<input type="text" name="min_price" value="" placeholder="Min">
—
<input type="text" name="max_price" value="" placeholder="Max" >
</form>
I tried below jQuery code, but cannot make it work?
$('#product-search').removeByContent('—');
But this doesn't work. Please any help?