Demo 2 - Different Elements

This demo shows how different elements can have a spotlight.

Form


Code

This javascript code for this page is:


$(document).ready(function(){
	$('#image').click(function(){
		$(this).spotlight();
	});
	$('#form').click(function(){
		$(this).spotlight();
	});
});
		

« Home | Demo 1 | Demo 2