Pages

Subscribe:

Ads 468x60px

Sunday, March 25, 2012

how to hide div on button click using jquery

In this JQuery web programming tutorial we will learn that how we can hide an element on a page using jquery. in this example we will learn that by clicking on a button how we can hide div or any element using jquery.
HTML button

JQuery Code
$('#hideButton').click(function () {
        $('#disclaimer').hide();
    });

No comments:

Post a Comment