Javascript

10 Alternative techniques in pure CSS to JavaScript

By Dibakar | July 18th, 2010 Posted in CSS, Javascript, Tutorials 3 comments »

It is easy to obtain pure CSS (with some HTML) into an interactive site with no scripting at all. So we can easily forget that surrounded by JavaScript (with JQuery).
CSS solutions are traditionally being associated with JavaScript, and they could be easily used. But it’s not fare to say, these techniques are anyway better than there JavaScript equivalent, just an optional alternative. In this article I am going to show many variations of CSS techniques that minimized the number of pure CSS navigation methods.


Read more >>

41 Fresh And Useful Jquery Plugins

By Dipankar | July 3rd, 2010 Posted in Javascript, 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 Javascript, Resources, Tools, Web Design, 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 >>

13 Free Web Analytics Tools For Tracking Your Visitors

By Dipankar | April 20th, 2010 Posted in Javascript, PHP, Tools, Web Design 20 comments »

Web analytics is the measurement, collection, analysis and reporting of internet data for purposes of understanding and optimizing web usage. Web analytics is not just a tool for measuring website traffic but can be used as a tool for business research and market research. Web analytics applications can also help companies measure the results of traditional print advertising campaigns. It helps one to estimate how the traffic to the website changed after the launch of a new advertising campaign. Web analytics provides data on the number of visitors, page views etc to gauge the popularity of the sites which will help to do the market research. In this article, you’ll find 13 excellent and free web analytics tool to help you gather and analyze data about your web content.


Read more >>

30 Useful jQuery Techniques

By Dipankar | March 11th, 2010 Posted in Javascript, Laboratory, 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 Javascript, Laboratory 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 >>