Revision: 65367
                            
                                                            
                                    
                                        
Initial Code
                                    
                                    
                                                            
                                    
                                        
Initial URL
                                    
                                    
                                
                                                            
                                    
                                        
Initial Description
                                    
                                    
                                
                                                            
                                    
                                        
Initial Title
                                    
                                    
                                                            
                                    
                                        
Initial Tags
                                    
                                    
                                
                                                            
                                    
                                        
Initial Language
                                    
                                    
                                                    
                        at November 25, 2013 16:59 by temanuel
                            
                            Initial Code
click
----------------------
$('#target').click(function() {
  alert('Handler for .click() called.');
});
hover
----------------------
$("li").hover(
  function () {
    $(this).append($("<span> ***</span>"));
  }, 
  function () {
    $(this).find("span:last").remove();
  }
);
animate
----------------------
$('#clickme').click(function() {
	$('#book').animate({
		opacity: 0.25,
		left: '+=50',
		height: 'toggle'
	}, 5000, function() {
		// Animation complete.
	});
});
$('img.selector_tab').animate({ marginLeft: 225 }, 350, function() {
	// Callback
	$('.opt.existing').css('color', '#a60e00');
});
Animate margin top on hover
	$('.footerRibbon').hover(
		function() { 
			$('.footerBook').animate({ marginTop: '-220px' }, 250, "swing" );
 	 	}, function() { 
			$('.footerBook').animate({ marginTop: '-170px' }, 250, "swing" );
		});
                                Initial URL
Initial Description
Initial Title
jQuery Functions
Initial Tags
Initial Language
JavaScript