Language: HTML
No Title
<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
December 26, 2009 @ 1:44am
Tags:
Report Abuse
Subscribe
Discuss
What's new
What is it
New Snippet
Recent Snippets
My Snippets
Web Code
Search

