View Full Version : Javascript dictionary...
blah-de-blah
August 9th, 2003, 03:33 AM
Just wonderin if there were any of these out there. I was lookin for those similiar to the flash help dictionary. THanks!
ahmed
August 9th, 2003, 03:49 AM
http://devedge.netscape.com/library/manuals/2000/javascript/1.5/reference/
Voetsjoeba
August 9th, 2003, 03:51 AM
http://wp.netscape.com/eng/mozilla/3.0/handbook/javascript/
http://javascript-reference.info
http://www.w3schools.com/js/default.asp
http://www.devguru.com/Technologies/ecmascript/quickref/javascript_index.html
blah-de-blah
August 9th, 2003, 04:25 AM
o ok thx, couldn't seem to find any in google :-\
But i'm not too sure if i understand this. I was trying to find out what substring did. And this is the result:
____________________________________________
substring Method
This method returns the characters in a string between two specified indices as a substring.
Syntax: object.substring(indexA, indexB)
____________________________________________
What does that mean? thanks
λ
August 9th, 2003, 04:57 AM
Basically, you specify two numbers. The string in between these two numbers is returned. ( remember that indexes start at 0, not 1).
for example:
var myStringVar = "Hello";
alert(myStringVar.substring(0,3));
//alerts Hel
blah-de-blah
August 9th, 2003, 10:22 AM
Ah thats much clearer, thx!
Powered by vBulletin® Version 4.1.10 Copyright © 2012 vBulletin Solutions, Inc. All rights reserved.