The following example adds a query parameter to the URL without refreshing the page but only works on modern HTML5 browsers.
index.html
<!DOCTYPE html> <html> <head> <title>Add query parameter to the url without reload</title> </head> <body> <button onclick="updateURL();">Update</button> <script type="text/javascript"> function updateURL() { if (history.pushState) { var newurl = window.location.protocol + "//" + window.location.host + window.location.pathname + '?para=hello'; window.history.pushState({path:newurl},'',newurl); } } </script> </body> </html>
Filed under: Javascript Tagged: HTML5, Javascript Image may be NSFW.
Clik here to view.

Clik here to view.
