JQuery fade in fade out


/ Published in: JavaScript
Save to your folder(s)



Copy this code and paste it in your HTML
  1. q1 = {
  2. init: function() {
  3. $("table.appTranslation").click(function() {
  4. $(this).fadeOut('slow', function() {
  5. $(this).html("Text to change").fadeIn('slow');
  6. });
  7. });
  8. }
  9. }
  10. q1.init();
  11.  
  12. });

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.