Earlier I had posted about Get Page Title and URL using jQuery, Get previous page URL using jQuery, Check for ‘#’ hash in URL using jQuery, Style Hyperlinks based on URL extension and Use protocol less URL for referencing jQuery.
Related Post:
To implement this, I have created a function which returns value of any parameters variable.
function GetURLParameter(sParam)
{
var sPageURL = window.location.search.substring(1);
var sURLVariables = sPageURL.split('&');
for (var i = 0; i < sURLVariables.length; i++)
{
var sParameterName = sURLVariables[i].split('=');
if (sParameterName[0] == sParam)
{
return sParameterName[1];
}
}
}?
And this is how you can use this function assuming the URL is,
“http://dummy.com/?technology=jquery&blog=jquerybyexample“.
var tech = GetURLParameter('technology');
var blog = GetURLParameter('blog');
So in above code variable “tech” will have “jquery” as value and “blog” variable’s will be “jquerybyexample“.
Feel free to contact me for any help related to jQuery, I will gladly help you.
© Copyright 2006–2025 Learning jQuery and participating authors. Written content on this site is under a Creative Commons License. Code examples are under your choice of MIT or GPL license.
Development & Design by Landocs with WordPress