Showing posts with label url decode. Show all posts
Showing posts with label url decode. Show all posts

Thursday, February 18, 2010

javascript URL encode and decode functions


1

jscode :
2 function encode() {
3 var obj = document.getElementById('dencoder');
var unencoded = obj.value;
obj.value = encodeURIComponent(unencoded);
}