Tuesday, January 5, 2010

Hide a DIV link


This here DIV will be hidden when you click on the link
This is the link that hides the DIV

Here's the HTML I used.

<div id="hide-this">
This here DIV will be hidden when you click on
the link
</div>
<a href="#hide-this" class="close">This is the link that hides the DIV</a>

And the following JavaScript sets up the preview

$(function() {
$('a.close').click(function() {
$($(this).attr('href')).slideUp();
return false;
});
});

No comments:

Post a Comment