Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

jquery url builder/parser

I'm searching for a jquery plugin for full URL manipulation (parsing, building).

Example:

var url = 'http://mypage.com/?param=1'
var params = $.getParams(url) # {param: 1}
var newUrl = $.newUrl(url, {param:2}) # 'http://mypage.com/?param=2'

Thx.

like image 334
xpepermint Avatar asked Dec 03 '10 10:12

xpepermint


2 Answers

To convert a JavaScript object into a URL parameter string you can use the jQuery param method:

$.param({a:1, b:"Test 1"}) // gets: "a=1&b=Test+1"

To parse a URL parameter string into a JavaScript object use this solution.

like image 104
Maksym Kozlenko Avatar answered Nov 14 '22 07:11

Maksym Kozlenko


There is this jquery plugin https://github.com/allmarkedup/jQuery-URL-Parser that I used once. But once you console.log window.location you will see that it is not so hard to do it your self.

I never tried this one: http://urldecoderonline.com/javascript-url-decode-jquery-plugin.htm but it seems it can build URL to.

Have fun

like image 5
meo Avatar answered Nov 14 '22 06:11

meo