Does slideUp('slow') and hide('slow') same or different?

Example Code:

<html>
<head>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript">
$(document).ready(function(){
  $("#hide").click(function(){
    $("p").hide('slow');
  });
  $("#show").click(function(){
    $("p").show('slow');
  });
});
</script>
</head>
<body>
<p>If you click on the "Hide" button, I will disappear.</p>
<button id="hide">Hide</button>
<button id="show">Show</button>
</body>
</html>

Edit: after some answer I understand that toggle use hide/show

Thanks, Yosef

link|improve this question

feedback

2 Answers

up vote 3 down vote accepted

No.

.slideUp('slow') animates the height and vertical padding to zero.
.hide('slow') also animates the width, horizontal padding, and opacity to zero.

To see the difference, paste javascript:void($('pre').hide(4000)) in the address bar in this page.

link|improve this answer
Oh, you removed the example code :-O Give it back! – Felix Kling Mar 13 '11 at 15:08
@Felix: Change hide to show. – SLaks Mar 13 '11 at 15:08
+1 from me for a good interactive answer :) – Felix Kling Mar 13 '11 at 15:10
feedback

The animation is a little different, - slideUp('slow') basically slides up, nothing else :) - hide('slow') slides up and left at the same time.

In jquery API doc you have good documentation:

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.