Archive for the ‘Javascript’ Category

This is the reversal part of my previous postConvert string to special characters you want using replace() function in javascript. Useful when converting characters to be saved in the database or passed as a parameter in a url.function...

Convert special characters to any string you want using replace() function in javascript. Useful when converting characters to be saved in the database or passed as a parameter in a url.function convertSC(oldstring){ newstring = oldstring.replace(/\"/g,...