Browse a Listing
Top > JavaScript > Tips and Tutorials > Development
Popular Tags
Free Script links
Wrtting classes in Javascript doesn't give full functionality of an object oriented language, but it atleast gives data hiding and encapsulation which are very useful specially when javascript is not a strongly typed language. It is very useful in cases when you need to handle multiple objects , instead of having arrays for all kinds of variables and then managing those arrays in methods you can just write a class to handle one object and then make many instances of that class. This also gives the namespace resolution to the variables so that you can avoid using global variables and still use variables across procedures.
Category:
Write a Review
Add Favorite
Refer it to Friend
Report Broken Link
Date Added: Oct 12, 2006 Hits: 6 Rating: 0.00 Votes: 0
Member Reviews
Visitor Ratings
Google PR
Member Reviews
Visitor Ratings
Google PR
was introduced to make it easier for web pages to "process"; that is, rather than merely display static information, JavaScript could be used to perform calculations, output results to the page, and so on. Typically, this power is best employed when triggered by the user who is, after all, the primary agent in a Web page. Events, then, became an essential tool for linking the user to the page.
Category:
Write a Review
Add Favorite
Refer it to Friend
Report Broken Link
Date Added: Oct 12, 2006 Hits: 3 Rating: 0.00 Votes: 0
Member Reviews
Visitor Ratings
Google PR
Regular expressions are calculated the same way as other JavaScript expressions, that is to say with account of operations priority: the operations with higher priority are performed first. If the operations have equal priority, they are performed from left to right. In the following table the operations of regular expressions are listed in descending order of their priority. The operations located in one chain have equal priority.
Category:
Write a Review
Add Favorite
Refer it to Friend
Report Broken Link
Date Added: May 9, 2007 Hits: 2 Rating: 0.00 Votes: 0
Member Reviews
Visitor Ratings
Google PR
FileUpload represents an element that allows a user to specify a file to be uploaded or submitted along with the form. The FileUpload object is a Browser object and is used to access the above FileUpload element of a form. Thus, the FileUpload object allows the user to give any file as input. If a user wants to access the FileUpload object then he or she can using the indexing concept on the elements array. The user can make use of each element inside the form that is stored as an array element within the array named elements [].
Category:
Write a Review
Add Favorite
Refer it to Friend
Report Broken Link
Date Added: May 24, 2007 Hits: 8 Rating: 0.00 Votes: 0
Member Reviews
Visitor Ratings
Google PR
Right(str, n): Returns 'n' number of Characters starting from the Right of the string(towards the left) 'str'.
Note: Use "Right" and not "right"(lower case) while calling the function.
Category:
Write a Review
Add Favorite
Refer it to Friend
Report Broken Link
Date Added: Jan 24, 2008 Hits: 5 Rating: 0.00 Votes: 0
Member Reviews
Visitor Ratings
Google PR
Member Reviews
Visitor Ratings
Google PR