Demo 1 - Positioning This demo shows how elements with different position attributes can still have a spotlight. Code This javascript code for this page is: $(document).ready(function(){ $('a#spotlight1-noanim').click(function(){ $('#box1').spotlight({animate:false}); }); $('a#spotlight1').click(function(){ $('#box1').spotlight(); }); $('a#spotlight2').click(function(){ $('#box2').spotlight(); });