My Opera is closing 3rd of March

In my Thoughts

"Dream is Not that What you see in Sleep. Dream is the thing Which Does Not Allow You to Sleep."

Get the Query String in Java Script

Get The Query String Value in Java script

var query = window.location.search.substring(1) // get the Query String into a Variable
var qsParm = new Array();
var parms = query.split('&');

for (var i=0; i<parms.length; i++)
{
var pos = parms.indexOf('=');

if (pos > 0)
{
var key = parms.substring(0,pos); // get the Query String Key
var val = parms.substring(pos+1); // Get the Query String Key Value.
}
}

How to access Parent Window Control in Child WindowSelf Management

Write a comment

New comments have been disabled for this post.