Download Mozilla with Google Toolbar. It is by far the best browser when it comes to extensions. IE7 is nice, but the don’t have good free extensions. I use the Web Developer Tool Bar all the time:
Cook an Egg with a Cell Phone
Is it possible? Try it out:
javascript lcase
The javascript equivalent to vbscript’s lcase() function is .toLowerCase(). Here’s an example:
var myVar;<br />
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.
- « Previous Page
- 1
- …
- 28
- 29
- 30
- 31
- 32
- …
- 41
- Next Page »