I have the following url:
http://myweb/sites/stonehr/SitePages/VacancyTracking.aspx?PrID=23?Status=34
And I have to get the value of PrID= and Status= with JavaScript, to be able to:
alert(PrID); // output should be 23
alert(Status); // output should be 34
How can I achieve this?