Currently, I have implemented a jQuery function to display a popup box using .show()
and hide it using .hide()
.
Is there a way to incorporate charming animations such as fading into the popup box?
// display pop up
$('.mypopup').show();
// conceal pop up
$('.mypopup').hide();