How do I use jQuery to decode HTML entities in a string?
Alternatively, theres also a library for it..
here, https://cdnjs.com/libraries/he
npm install he //using node.js
//or from your javascript directory
The usage is as follows...
//to encode text
he.encode('© Ande & Nonso® Company LImited 2018');
//to decode the
he.decode('© Ande & Nonso® Company Limited 2018');
cheers.