how to do urldeco on jquery -
i using following not doing proper urldecoding me
function showvalues() { var str = $j("form").serialize(); str = $j.urldecode(str); $j("#results").text(str); } how can fix it
thanks
is you're looking for? http://www.diveintojavascript.com/core-javascript-reference/the-decodeuri-function
it's native javascript function decodes uri.
Comments
Post a Comment