New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

jquery-querystring

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

jquery-querystring

Adds a simple querystring helper to the jQuery object, with a similar interface to the ASP.NET one

latest
Source
npmnpm
Version
1.2.1
Version published
Maintainers
1
Created
Source

jQuery.QueryString

Adds a simple querystring helper to the jQuery object, with a similar interface to the ASP.NET one.

Usage:

Lets assume the URL is: http://example.com/?title=myTitle&page=myPage#mySection

To get the different components you will write code like:

var title = $.QueryString("title");
var page = $.QueryString("page");
var hash = $.QueryString("#");

This will result in the following values:

title == "myTitle"
page == "myPage"
hash == "mySection"

Keywords

jquery-plugin

FAQs

Package last updated on 24 Jul 2016

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts