/ Published in: JavaScript
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
q1 = { init: function() { $("table.appTranslation").click(function() { $(this).fadeOut('slow', function() { $(this).html("Text to change").fadeIn('slow'); }); }); } } q1.init(); });