All Downloads are FREE. Search and download functionalities are using the official Maven repository.

restx.admin.js.jquery.querystring.js Maven / Gradle / Ivy

There is a newer version: 1.2.0-rc2
Show newest version
// see https://github.com/gehsekky/jquery-querystring/blob/master/jquery.querystring.js
(function($){
	$.extend({
		querystring: function(name) {
			var match = RegExp('[?&]' + name + '=([^&]*)').exec(window.location.search);
			return match && decodeURIComponent(match[1].replace(/\+/g, ' '));
		}
	});
})(jQuery);




© 2015 - 2025 Weber Informatics LLC | Privacy Policy