Jump to content

jQuery Question


glenelkins

Recommended Posts

If you have firebug you can see what gets clicked in the console tab

<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.3/jquery.min.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$('html body *').click(function(){
	console.log($(this));
});
});
</script>

Link to comment
https://forums.phpfreaks.com/topic/168117-jquery-question/#findComment-886667
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.