Archive for the ‘Scripting’ Category

23
Jan

Create two dimensional arrays

   Posted by: Pradeep Tags:

Lets understand how to create a two dimensional javascript arrays. First create a singular list of arrays

var country0StateList = new Array("Country0-State0","Country0-State1","Country0-State2","Country0-State3");
var country1StateList = new Array("Country1-State0","Country1-State1","Country1-State2","Country1-State3");
var country2StateList = new Array("Country2-State0","Country2-State1","Country2-State2","Country2-State3");
var country3StateList = new Array("Country3-State0","Country3-State1","Country3-State2","Country3-State3");

Create an array of arrays with

var countries = new Array(country0StateList,country1StateList,country2StateList,country3StateList);

Voila, the variable countries now is a two dimensional array.

30
Sep

To check if flash plugin is installed

   Posted by: Pradeep Tags:

Here is the code that will help us to determine if flash is installed on the browser. To know if flash is installed in IE, we need to get around it using VB Script. The reason:

IE does not populate the available plugins in navigator.plugins array. The plugin array is always empty irrespective of installed plugins. The only way we can check if the plugin is installed in IE is by using the createObject method available in VBScript. Read the rest of this entry »