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();
Just want to know technical Difference between them that when I need to use which function for specific need.