Get URL Parameters in Javascript

A simple function that will allow you to get the URL parameters in javascript.


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];
        }
    }
  }

http://www.jquerybyexample.net/2012/06/get-url-parameters-using-jquery.html

Scroll to Top