Skip to main content

Posts

Showing posts from September, 2014

Jquery !!

$('#toggleButton').click(function() { if ($('#disclaimer').is(':visible')) { $('#disclaimer').hide(); } else { $('#disclaimer').show(); } }); --------------- $('#celebs tbody tr').hover(function() { $(this).addClass('zebraHover'); }, function() { $(this).removeClass('zebraHover'); }); --------------- $('#navigation li').hover(function() { $(this).animate({paddingLeft: '+=15px'}, 200); }, function() { $(this).animate({paddingLeft: '-=15px'}, 200); }); ----------------- $('#disclaimer').animate({ opacity: 'hide', height: 'hide' }, 'slow'); ------------- $('#disclaimer').animate({ opacity: 'hide', height: 'hide' }, 'slow'); ---------------- $('p:first').toggle(function() { $(this).animate({'height':'+=150px'}, 1000, 'linear'); }, function() { $(this).animate({'...