Mega Code Archive

 
Categories / JavaScript DHTML / Data Type
 

Unescape() Example

<html> <body> <button onclick="alert(escape('www.rntsoft.com'));">Escape function</button> <button onclick="alert(unescape('www.rntsoft.com%20www.rntsoft.com%21'));">Unescape function</button> </body> </html>