folks,
when i click a#showhide link, the 'p#optbox' is shown.Code:<script language="JavaScript"> $(document).ready(function(){ $('p#optbox').hide(); $('a#showhide').click(function(){ $('p#optbox').slideDown('slow'); }); }); </script>
now my problem is, when i click again 'p#optbox' should hide.
how to check the show hide status of an eliment using jquery?
i did not find a good jquery conditional statement thing when google . so pls help.






Bookmarks