javascript - How to convert curly quotes to “ -
this question has answer here:
how convert multibyte characters curly quotes equivalent entity “
using jquery or javascript?
var usertxt = '“testing”';
after converting usertxt should => “testing”
here's how it:
$('<div/>').text('this fun & stuff').html(); // evaluates "this fun & stuff"
or can this way.
Comments
Post a Comment