February 2006


Random09 Feb 2006 11:01 am

Is it possible? Try it out:

http://www.wymsey.co.uk/wymchron/cooking.htm

Javascript03 Feb 2006 03:05 pm

The javascript equivalent to vbscript’s lcase() function is .toLowerCase(). Here’s an example:

var myVar;
myVar = ‘HELLO’;
myVar = myVar.toLowerCase();
alert(myVar);

The output is, of course, “hello”.

As you could guess, the equivalent to vbscript’s ucase() function is .toUpperCase(). Pretty self explanatory. Here’s a link to other javascript string functions.