JQuery Difference between hide() and fadeOut() , show() and fadeIn()
问题 I am new to jQuery. Currently, I am working with jQuery in my one of Cross Platform Mobile Applications. I need to hide and show some of my Page Contents on respective conditions. I have found following two methods that are working fine for me. $( "#myControlId" ).fadeOut(); $( "#myControlId" ).hide(); both lines are working fine for me to hide my views, also when I need to show my views following both lines are working well for me $( "#myControlId" ).fadeIn(); $( "#myControlId" ).show();