How Garbage Collector(GC) works?
How Garbage Collector (GC) works?
Microsoft .NET CLR environment provides automatic memory management using Garbage Collection (GC). Garbage Collection (GC) basically a process that frees or releases the object from the memory which is no longer is in use by program. When we create new object Common...
jQuery Events Part - II : Mouse Events - Continue....
By
Avinash

jQuery mouse evemts.hover()
hover mouse event triggers to the element when user take mouse over the perticular element.
Example of hover mouse event:<div> id="hoverDiv">Change Color </div>
$(document).ready(function()
{
$("hoverDiv").hover(
function () {
$(this).css("backgroundcolor", 'blue');
}
);
});
.mousedown()
...
jQuery Events Part - II : Mouse Events
By
Avinash

jQuery mouse eventsIn this post we will look how jQuery mouse events works. jQuery library provides mouse events like click, double click, mouseup, mousedown, toggle..etc. Using this jQuery events one can easily perform the required operations or actions. We will look jQuery events samples in this post.
.click()
click event get triggered to an element...
jQuery Events Part - I : Document loading Events and Keyboard Events
By
Avinash

jQuery eventsjQuery basically have following type of events:
.ready()
Indicates that DOM is fully loaded that mean all controls and it's hierarchy is fully loaded .This is the best place to do all event handling and jacascript/jQuery code manipulations.
Below example shows how to use .ready() in jQuery:
$(document).ready(function()
{
// Handler...
jQuery basics
By
Avinash

Basics of jQueryIn this post we will see very basic of jQuery.How to start with jQuery?jQuery, is a Javascript library with cross-browser support and open source which simplify the client side scripting in web/html.
It supports
DOM,
CSS manipulation,
Ajax,
animations and effect
extendible plugins.
Get Started using jQuery:
jQuery needs...