<script src="http://www.google.com/jsapi"></script>
<script>
// Load jQuery
google.load("jquery", "1.2.6");
</script>
<script>
$().ready(function() {
//display the instructions
alert('Click on the 4 regions!');
$("#form_01, #report_01, #doc_01, #code_01").click(function(){
alert('left="'+$(this).position().left+'px" / top="'+$(this).position().top+'px"');
});
});
</script> |