QueryString using JQuery
There are lots of ways to get query-string from the web URL by using jQuery but this is the best way I feel to retrieve one or more than one query-strings parameters from the URL.
How to do it?
Let's suppose your URL is http://YourUrl.aspx.
It has 2 query-string parameters i.e. "itemid" and "status".
The parameter "itemid" has value as "1" and parameter "status" has value as "Approve".
So, now your URL will be http://YourUrl.aspx?itemid=1&status=Approve.
In...