Here is my code and it shows a memory leak in firfox and I have not tested with ie. I am sure that there will be a memory leak. Here is my code and I am using jQuery 1.1.3.1-$Date: 2007-07-05 00:43:24 -0400 (Thu, 05 Jul 2007)
***********************************************/ <script type="text/javascript" src="../jscripts/jquery.js"></script> <script type="text/javascript"> $(function() { $("#BrowseStatics").hide(); $("#bs-toggle, #bs-toggle1, #bs-toggle2").click(function(){ $("#BrowseStatics").slideToggle(); return false; }); }); </script> <script type="text/javascript"> **********************************************/ What I wanted is to load an html to my div when a click occur on the link above. (right now there is no load function attached to the script. I don't know how to do it?) It need to slide down and show the remote html. If you click again it need to slide up. I am a webdesigner not a coder. I used this script from the souse of documentation and some other referals. So I don't know is thi code is write or not. Please help me to find a solution for this.