Click here to Skip to main content
15,881,803 members
Articles / Web Development / HTML
Article

Getting URL parameters using JavaScript

Rate me:
Please Sign up or sign in to vote.
4.08/5 (17 votes)
8 Aug 20041 min read 174.8K   4.5K   25   7
An article on getting URL parameters using JavaScript (IE, NS).

Sample Image

Introduction

This is a JavaScript that helps you get the URL Parameters of a page..

Using the code

It's very easy to use the script. Just include the .js file into the page HTML code and execute it when you want.

HTML
<script language="javascript" src="scripts/getParams.js"></script>

The getParams.js, which is saved in the "scripts" folder in the project, includes the function getURLParameters() which splits the URL string after the first '?' character, and it puts the parameter names and values in separate arrays, which have the same length.

If no parameters are found in the URL string, the appropriate alert comes up.

Finally, I have configured the script in such a way, that if a parameter does not have any value, the alert that shows this parameter, displays "No value" for this parameter.

At the end, the function shows the parameter names and values one by one, in alert message boxes, as it is shown in the picture above.

Points of Interest

I was wondering if it is possible to use URL parameters in client only pages, because it is useful sometimes to handle information and data by this way.

So, I learned how to get the URL parameters of a web page by using only JavaScript and not any Server-Side programming language.

The script can be used in both Internet Explorer and Netscape browsers.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Web Developer
Greece Greece
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
GeneralA Little More Useful Code Pin
djdombrowski18-May-09 7:29
djdombrowski18-May-09 7:29 
GeneralAlternative 'complete' argument splitter that supports objects, arrays and other stuff Pin
arc20007-Nov-08 7:59
arc20007-Nov-08 7:59 
Generalit is not complete Pin
breceivemail7-Jun-08 21:45
breceivemail7-Jun-08 21:45 
GeneralRe: it is not complete Pin
Bizounours7-Oct-08 3:07
Bizounours7-Oct-08 3:07 
GeneralExistParameter ( Param ) GetParameterValue ( Param ) Functions added Pin
Ricardo Casquete11-Sep-06 5:45
Ricardo Casquete11-Sep-06 5:45 
GeneralUseful Pin
Ricardo Casquete11-Sep-06 4:20
Ricardo Casquete11-Sep-06 4:20 
GeneralGood job Pin
johnacruise23-Aug-06 13:25
johnacruise23-Aug-06 13:25 

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.