jQuery

41 Fresh And Useful Jquery Plugins

By Dipankar | July 3rd, 2010 Posted in jQuery 5 comments »

If you need to display content within a limited amount of space or you just want to make a section of your website more engaging, jQuery is an excellent solution. jQuery has changed the way developers write JavaScript and the way users interact with websites and web applications. This post includes 41 amazing jquery plugins for form functionality, validation, security and customization.


Read more >>

25 Fresh and Useful JQuery Plugins

By Dipankar | April 25th, 2010 Posted in jQuery 21 comments »

If you need to display content within a limited amount of space or you just want to make a section of your website more engaging, jQuery is an excellent solution. jQuery has changed the way developers write JavaScript and the way users interact with websites and web applications. In this article, I’ve posted 25 fresh and useful jquery plugins that have been released in the past few months.



Read more >>

30 Amazing JQuery Navigation Menu Examples

By Dipankar | March 26th, 2010 Posted in Examples and Practices, Tutorials, jQuery 13 comments »

For websites, navigation menus have a important role. In this article I want to show how big sites, full with a lot of pages and articles, drop down menus, and tabs are popular. You can save space on website displaying content on dynamic tabs. jQuery could be the right choice to choose offering bunch of customizable options. That’s why I present to You 30 really good jQuery navigation menu examples for every need.


Read more >>

30 Useful jQuery Techniques

By Dipankar | March 11th, 2010 Posted in jQuery 15 comments »

jQuery is a lightweight cross-browser JavaScript library that emphasizes interaction between JavaScript and HTML. It was released in January 2006 at BarCamp NYC by John Resig. Used by over 27% of the 10,000 most visited websites, jQuery is the most popular JavaScript library in use today.

Read more >>

A basic introduction to jQuery and its concepts

By Dibakar | November 1st, 2009 Posted in jQuery 20 comments »

How jQuery Works

  • Original Author: John Resig.
  • jQuery: The Basics

    This is a basic tutorial, designed to help you get started using jQuery. If you don’t have a test page setup yet, start by creating a new HTML page with the following contents:

    <html>
    <head>
    <script type="text/javascript" src="jquery.js"></script>
    <script type="text/javascript">
    </script>
    </head>
    <body>
    <a href="http://jquery.com/">jQuery</a>
    </body>
    </html>

    Read more >>