SPECIAL OFFER: ENJOY 3 MONTHS OF SHOPIFY FOR $1/MONTH SPECIAL OFFER: ENJOY 3 MONTHS OF SHOPIFY FOR $1/MONTH SPECIAL OFFER: ENJOY 3 MONTHS OF SHOPIFY FOR $1/MONTH SPECIAL OFFER: ENJOY 3 MONTHS OF SHOPIFY FOR $1/MONTH SPECIAL OFFER: ENJOY 3 MONTHS OF SHOPIFY FOR $1/MONTH SPECIAL OFFER: ENJOY 3 MONTHS OF SHOPIFY FOR $1/MONTH SPECIAL OFFER: ENJOY 3 MONTHS OF SHOPIFY FOR $1/MONTH SPECIAL OFFER: ENJOY 3 MONTHS OF SHOPIFY FOR $1/MONTH SPECIAL OFFER: ENJOY 3 MONTHS OF SHOPIFY FOR $1/MONTH SPECIAL OFFER: ENJOY 3 MONTHS OF SHOPIFY FOR $1/MONTH
Events On Jquery
Magepow.com

Events On Jquery

Hi everyone, Today I will show you the list of events on Jquery

Mouse Events

scroll, click, dblclick, mousedown, mouseup, mousemove, mouseover, mouseout, mouseenter, mouseleave, load, resize, scroll, unload, error.

Example Usage

(function($) 
{

    $(document).ready(function()
    {
        $('#id).bind('click', function(e)
        {
            //mouse event fired (element clicked)
        });
    });

})(jQuery);

Keyboard Events

keydown, keypress, keyup.

Example Usage

(function($) 
{

    $(document).ready(function()
    {
        $(document).bind('keypress', function(e)
        {
            //keyboard event fired
        });
    });

})(jQuery);

Browser Events

load, resize, scroll, unload, error.

Example Usage

(function($) 
{

    $(document).ready(function()
    {
        //browser event fired (document object model loaded)
    });

})(jQuery);

DOM Element Events

blur, focus, focusin, focusout, change, select, submit.

Example Usage

(function($) 
{

    $(document).ready(function()
    {
        $('#id).bind('blur', function(e)
        {
            //dom event fired (input focus)
        });
    });

})(jQuery);

Done. Hope this article will helpful for you.