Click here to Skip to main content
15,881,248 members
Articles / jQuery
Tip/Trick

Handling QueryString Using jQuery

Rate me:
Please Sign up or sign in to vote.
4.50/5 (2 votes)
18 Jan 2013CPOL 29.3K   5   2
Handle QueryString Using JQuery

Introduction

This article will help to handle QueryString values using jQuery.

Background

I was unable to handle designs (select particular options) according to querystring values when the page got refreshed. So I used jQuery to handle these querystring values. After page gets refreshed, Jquery code will execute and help to handle querystring variables easily.

Using the Code

In normal back-end code when page gets refreshed, the default values will be reset to variable. So in my initial code, Jquery worked for default variable. Later, I came across the below code to handle QueryString variable such that after Page get refreshed, Jquery code will be executed and get new querystring values.

Hence jQuery worked for new QueryString values.

JavaScript
<script type="text/javascript" language="javascript">
    $(document).ready(function()
    {
        var urlParams = {};
        (function () 
        {
            var match,
            pl= /\+/g,  // Regex for replacing addition symbol with a space
            search = /([^&=]+)=?([^&]*)/g,
            decode = function (s) { return decodeURIComponent(s.replace(pl, " ")); },
            query  = window.location.search.substring(1);

            while (match = search.exec(query))
            urlParams[decode(match[1])] = decode(match[2]);
        })();
         if( urlParams["q1"]=== 1 )
        { return 1; }
}); </script>

Here... urlParams["q1"], qurlParams["q2"], urlParams["q3"] are the values of querystring variables q1, q2, q3 respectively.

Points of Interest

Front end design becomes easy to handle.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer Sonata Software Pvt Ltd
India India
Hi.. I am Vinod Kumar B C from Mysore, Karnataka. I have done MCA and currently working as a Software Engineer having 3 Years of Experience in web development. I know Asp.net, C#, MVC, Sql Server, CSS, JQuery, C, C++, HTML, DB2, DataStructures.

Comments and Discussions

 
Generaljquery Pin
Manohar_manu17-Jan-13 23:57
Manohar_manu17-Jan-13 23:57 
nice one..good tips
GeneralRe: jquery Pin
vinodkumarnie18-Jan-13 0:07
vinodkumarnie18-Jan-13 0:07 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.