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..
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();
});
2 matches
Mail list logo