Reply - [jQuery] Re: How hide DIV on body onclick

2009-03-28 Thread bharani kumar
Hi am asking somthing like yahoo , not an this, this one small example for show and HIDE DIV, when i click the reply link, it should show the reply, reply to all , these link hide , when i click the reply link as well as anywhere in the page , u got it, Thanks n You Can use following code..

[jQuery] Re: How hide DIV on body onclick

2009-03-28 Thread Vijendra
You Can use following code... $(document).ready(function() { $('#list1').hide(); $('#list').show(); $("#btn .btn1").bind("mouseover", function(){ $('#list').show("slow"); $('#list1').hide(); }); $("#btn1 .btn2").bind("mouseover", function(){ $('#list1').show("slow"); $('#list').hide(); });