To encode Uniform Resource Identifier (URI) you can use the
encodeURIComponent()
JavaScript function like this:
javascript:location.href=’http://mysite.com/bookmark.aspx?url=’ + encodeURIComponent(location.href)+’&title=’ + encodeURIComponent(document.title)
To decode the URI you can use the decodeURIComponent JavaScript function.encodeURIComponent, JavaScript, URL Encoding
No comments:
Post a Comment