slideUp('slow')
और hide('slow')
परिणामस्वरूप एक ही एनीमेशन प्रभाव होता है?क्या jQuery के छिपाने और स्लाइडअप विधियों के बराबर हैं?
उदाहरण कोड:
$(document).ready(function(){
$("#hide").click(function(){
$("p").hide('slow');
});
$("#show").click(function(){
$("p").show('slow');
});
});
<p>If you click on the "Hide" button, I will disappear.</p>
<button id="hide">Hide</button>
<button id="show">Show</button>