URL Parameter Access in JQuery


/ Published in: JavaScript
Save to your folder(s)



Copy this code and paste it in your HTML
  1. // Read a page's GET URL variables and return them as an associative array.
  2. function getUrlVars()
  3. {
  4. var vars = [], hash;
  5. var hashes = window.location.href.slice(window.location.href.indexOf('?') + 1).split('&');
  6. for(var i = 0; i < hashes.length; i++)
  7. {
  8. hash = hashes[i].split('=');
  9. vars.push(hash[0]);
  10. vars[hash[0]] = hash[1];
  11. }
  12. return vars;
  13. }

URL: http://jquery-howto.blogspot.com/2009/09/get-url-parameters-values-with-jquery.html

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.