I\'m using .show to display a hidden message after a successful form submit.
.show
How to display the message for 5 seconds then hide?
You can use the below effect to animate, you can change the values as per your requirements
$("#myElem").fadeIn('slow').animate({opacity: 1.0}, 1500).effect("pulsate", { times: 2 }, 800).fadeOut('slow');