Nicholas Ortenzio bu küçük eklentiyi yazdı:
jQuery.extend(( getQueryParameters : function(str) ( return (str || document.location.search).replace(/(^\?)/,'').split("&").map(function(n)(return n = n.split("="),this(n(0)) = n(1),this).bind(()))(0); ) ));
Yani URL ise:
http://codepen.io/chriscoyier/pen/uszCr?lunch=sandwich&dinner=stirfry
Yapabilirsin:
var queryParams = $.getQueryParameters();
Ve queryParams
şöyle bir nesne olacak:
( "lunch": "sandwich", "dinner": "stirfry" )