Jump to content

Jquery "on second click"


V

Recommended Posts

I have a text that when click a  a HTML form slides down. I'm trying to slide it back up when you click on the text again. The code that works is

 

<script type="text/javascript">
$(document).ready(function(){
  $("#slidedown").click(function() {
 $("#form").slideDown("fast");
 });
});
</script>

 

and now to slide it back up on click I tried toggle. Nothing happens tho..

 

<script type="text/javascript">
  $('#slidedown').toggle(
   click(function() {
 $('#form').slideDown("fast");
   }),
    click(function() {
 $('#form').slideUp("fast");
   });
);  
</script>

 

Please anyone have any suggestions?

Link to comment
https://forums.phpfreaks.com/topic/207197-jquery-on-second-click/
Share on other sites

Thanks throbe I tried without clicks but again nothing happens.

 

This is the page code I use

 

<div id="slidedown">+ Add New Category</div>
<div id="form">

    <form action="#" method="post">

    <input type="text" id="cat" name="cat" size="14" />
    
    <br />
    
    <input type="submit" name="submit" id="button" class="submit" value="Add Category">
    
    </form>
    
</div>

 

It works fine just sliding down. Sliding back up is the issue..

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.