What is $ ?
In our first example of jQuery we have seen the "hello world" example with the significance of document.ready event but there is a concept which may be striking in your...
jQuery making the javascript simpler
In our first example of jQuery we have seen the "hello world" example with the significance of document.ready event but there is a concept which may be striking in your...
The jQuery as we know is a javascript library, now to use this we need to include this library in our javascript or .js file. Recall that the javascript code...
<!--This example will show you how to write jQuery code actually and what is document.ready event in jQuery --> <!-- we will show an alert "hello world" when the document...
Before proceeding with the code, the first requirement is to understand the DOM or Document Object Model. The DOM explains how the window is related to document, how a document...
The first jQuery selector that we will look is * which is used to select all elements of the page. It can be used as follows: $("*") Now lets look...
jQuery is simply a library that contains several javascript functions. This library helps us to accomplish the tough jobs in a very easy manner as compared to simple javascript. Not...
jQuery is a cross-browser JavaScript library designed to simplify the client-side scripting of HTML. It was released in January 2006 at BarCamp NYC by John Resig. Used by over 41%...
I have mentioned that jQuery is the library of Javascript functions and since i believe that you are a beginner with jQuery learning and want to know the what is...
jQuery datepicker runs very slow in IE6.It is due to the animation implemented in datepicker.To make it fast we have to add a key with its value ''.For e.g: $('selector').datepicker(...
You may be thinking that which is better Javascript or jQuery. Most of us will answer that jQuery is better than the core javascript. However this answer is completely wrong...