17 March 2020

How to Get URL parameters & values from url in jQuery?

function

function getUrlVars()
{
    var vars = [], hash;
    var hashes = window.location.href.slice(window.location.href.indexOf('?') + 1).split('&');
    for(var i = 0; i < hashes.length; i++)
    {
        hash = hashes[i].split('=');
        vars.push(hash[0]);
        vars[hash[0]] = hash[1];
    }
    return vars;
}


Url


http://www.example.com/jassi.html?me=myValue&name2=SomeOtherValue

OR

http://www.example.com/?me=myValue&name2=SomeOtherValue


Usage


var first = getUrlVars()["me"];

// To get the second parameter
var second = getUrlVars()["name2"];

No comments:

Post a Comment

How to create youtube videos slider with play and pause option in wordpress?

Create youtube videos slider with play and pause option in wordpress youtube videos slider Use this shortcode:- [punjab_today] function my_...