can you please tell me how to remove the span tag using jquery. INPUT
<span class="abc">PQR </span>
OUTPUT
PQR
I done before but don't remember I think I used regex or replace .:(
Second
How to replace   by a space(" ") ?
I used like that but not work.
replace(/ /g,'');