Showing posts with label fade out code in jquery. Show all posts
Showing posts with label fade out code in jquery. Show all posts

fade out code in jquery

fade out code in jquery

<div id="clickme">
  Click here
</div>

<img id="book" src="book.png" alt="" width="100" height="123" />
$('#clickme').click(function() {
  $('#book').fadeOut('slow', function() {
    // Animation complete.
  });
});