New Snippet New Snippet Recent Snippets Recent Snippets My Snippets My Snippets Web Code Search Snippets Search
Sign inor Register
Language: HTML

No Title

351 Views
Copy Code Show/Hide Line Numbers
<html>
<head>
<script src="http://ajax.microsoft.com/ajax/jquery/jquery-1.3.2.min.js" type="text/javascript"></script> 
</head>
<body>
<div id="related-results" class="auto-closable-div">
  <h2>Blah blah blog</h2>
  </h2>
</div>
 
</body>
<script>
$(function() { //ready
 
$('.auto-closable-div').each(function() {
var thisDiv=this;
var hideAnchor= document.createElement("a");
$(hideAnchor).attr("title", "hide this div")
             .attr("href", '#')
             .text("[Hide]")
             .appendTo(thisDiv)
             .click(function() {
                  $(thisDiv).slideUp();
                  return false;
             });
});
 
}); //ready
 
</script>
</html>
by Cengiz Han
  December 26, 2009 @ 1:44am
Tags:

Add a comment


Report Abuse
brought to you by:
West Wind Techologies


If you find this site useful and use it frequently please consider making a donation to support this free service.
Donate