How to get querystring value using jQuery
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.
function GetQueryStringParams(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 = GetQueryStringParams('technology'); var blog = GetQueryStringParams('blog'); //
Feel free to contact me for any help related to jQuery, I will gladly help you.