Top 10 Jquery Examples with Live Demos


What is jquery?
A example is more worth than 100 words

how many lines of code you might need to achieve this?

Answer: Only four lines and that too without knowing any regular expressions….. Yes. Using a library called jquery and its validate plugin. Code is shown below.

  1. $.validator.setDefaults({
  2.         submitHandler: function() { alert(“submitted!”); }
  3. });
  4.  
  5. $().ready(function() {
  6.         // validate the comment form when it is submitted
  7.         $(“#commentForm”).validate();
  8. });

Below are some good design examples of what you can achieve using jquery.
If you have came across any nice implementation of Jquery, let me know through comments. I will like to update my list.

Have you liked it? Why not help me by sharing this :
  • Digg
  • del.icio.us
  • Facebook
  • Google
  • MySpace
  • Reddit
  • Slashdot
  • StumbleUpon
  • Technorati
  • TwitThis

About the Author

admin