I'd like to make a tool which allows to process data picked from an iframed page. Something similar to this:
I stopped on events (hover, click, etc.). Is it possible to do it my way? Is there a better way?
I need somthing like this:
$('iframe body *').bind('click', function(event){
console.log('clicked', this);
});