Query String Archives : Binary Bits https://blog.binarybits.net/tag/query-string/ Bits & Pieces - A blog by Kannan Balasubramanian Mon, 03 May 2021 10:50:10 +0000 en-GB hourly 1 https://wordpress.org/?v=6.5.2 Get query string parameter using JavaScript https://blog.binarybits.net/get-query-string-parameter-using-javascript/ https://blog.binarybits.net/get-query-string-parameter-using-javascript/#respond Tue, 18 Jul 2017 06:40:39 +0000 https://blog.binarybits.net/?p=924 Following code will help in fetching the value of a query string parameter. function GetQueryStringParameter(parameter) { var search = location.search.substring(1); var queryStringParameters = JSON.parse('{"' + decodeURI(search).replace(/"/g, '\\"').replace(/&/g, '","').replace(/=/g, '":"') + '"}') return queryStringParameters[parameter]; } Usage: If URL is http://server/page.html?id=1 Then usage would be GetQueryStringParameters(“id”) which would return 1

The post Get query string parameter using JavaScript appeared first on Binary Bits.

]]>
Following code will help in fetching the value of a query string parameter.

function GetQueryStringParameter(parameter) {
    var search = location.search.substring(1);
    var queryStringParameters = JSON.parse('{"' + decodeURI(search).replace(/"/g, '\\"').replace(/&/g, '","').replace(/=/g, '":"') + '"}')
    return queryStringParameters[parameter];
}

Usage:

If URL is http://server/page.html?id=1

Then usage would be GetQueryStringParameters(“id”) which would return 1

The post Get query string parameter using JavaScript appeared first on Binary Bits.

]]>
https://blog.binarybits.net/get-query-string-parameter-using-javascript/feed/ 0