Return to Snippet

Revision: 8925
at November 20, 2008 07:49 by Wiederkehr


Updated Code
$(document).ready(function(){
	/* Elements Visibility
	/////////////////////////////////////////////////////////////////*/
	$('.element').hide();
	/* Elements Functionality
	/////////////////////////////////////////////////////////////////*/
	$('.element').click(function(){
		return false;
	});
	$('.element').mouseout(function(){
		}
	});
	$('.element').mouseover(function(){
		}
	});
});

Revision: 8924
at October 17, 2008 04:44 by Wiederkehr


Updated Code
$(document).ready(function(){
	/* Elements Visibility
	/////////////////////////////////////////////////////////////////*/
	$('.element').hide();
	/* Elements Functionality
	/////////////////////////////////////////////////////////////////*/
	$('.element').click(function(){
		}
		return false;
	});
	$('.element').mouseout(function(){
		}
	});
	$('.element').mouseover(function(){
		}
	});
});

Revision: 8923
at October 14, 2008 09:10 by Wiederkehr


Initial Code
$(document).ready(function(){
	/* Elements Visibility
	/////////////////////////////////////////////////////////////////*/
	$('.element').hide();
	/* Elements Functionality
	/////////////////////////////////////////////////////////////////*/
	$('.element').click(function(){
		}
		return false;
	});
	$('.element').mouseout(function(){
		}
	});
	$('.element').mouseover(function(){
		}
	});
});

Initial URL


Initial Description
Update: Fixed a bug at the basic click() function.

Initial Title
jQuery Basics Setup

Initial Tags
javascript, js, jquery

Initial Language
JavaScript