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
Share on other sites

Those clicks don't belong there.

 

$('#slidedown').toggle(
    function() {
        $('#form').slideDown("fast");
    }),
    function() {
        $('#form').slideUp("fast");
    });
);

Link to comment
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..

Link to comment
Share on other sites

There was a few syntax errors.

 

$(document).ready(function() {
    $('#slidedown').toggle(
        function() {
            $('#form').slideDown("fast");
        },
        function() {
            $('#form').slideUp("fast");
        }
    );
});

Link to comment
Share on other sites

untested but this should also work

 

$(document).ready(function() {
    $('#slidedown').click(
        function() {
            $('#form').slideToggle("fast");
        }
    );
});

 

Yes that works too :) Thanks!

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.