Skip to content

Latest commit

 

History

History
25 lines (18 loc) · 541 Bytes

File metadata and controls

25 lines (18 loc) · 541 Bytes

queryjs

easy url query parameter manipulation

available in the browser and in nodejs

  • npm install queryjs
  • bower install dubfriend-queryjs

##queryjs.set(parameterObject)

//newURL === 'url.com?a=foo';
var newURL = queryjs.set('url.com', { a: 'foo' });

//newURL === 'url.com?a=new&b=bar'
newURL = queryjs.set('url.com?a=foo', { a: 'new', b: 'bar' });

##queryjs.get()

//parameters === { a: 'foo' };
var parameters = queryjs.get('url.com?a=foo');

works with url hashes. (todo: support query parameter arrays)