Jump to content

Check if URL variable exists


eddy556

Recommended Posts

Sorry for creating a new thread but I've just gone and solved this myself:

 

function isWorkArea()
{

    var strQuery;
    var arrayParm;
    var arrayValue;
    var Value1, Value2

    strQuery = location.search.substring(1);

    arrayParm = strQuery.split("&");
    
    if (arrayParm[0] != null)
    {
        arrayValue = arrayParm[0].split("=");
        Value1 = arrayValue[1];
    }
    
    if (arrayParm[1] != null)
    {
        arrayValue = arrayParm[1].split("=");
        Value2 = arrayValue[1];
    }

    
    if (Value1 == "undefined")
    {
        //Value1 does not exist
    }
    
    if (Value1 != "undefined" && Value2 == "undefined")
    {
        //Value1 exists and Value2 doesn't
    
    }

}

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.