i'm trying to track click on html element.
with:
$('html').click(function() {
// action here
});
but this thing won't work with iframe , coudn't catch iframe click, or click to selectionbox
|
i'm trying to track click on html element. with:
but this thing won't work with iframe , coudn't catch iframe click, or click to selectionbox |
||||
| show 2 more comments |
|
This answer is based on the iframe content is of your domain, using jquery 1.7.2 and this should be inside of document ready html
js
|
|||||||||||
|
|
You need to place your script inside the document.ready function, and change 'html' to document.
|
|||||||
|
|
You could place a div with a high z-index over the iframe. That should intercept all clicks and call the document click handler. The major issue is just that though. It intercepts all clicks so the underlying iframe will not receive any click events. |
|||
|
|
'body'ordocumentinstead. – ThiefMaster♦ Jun 7 '12 at 18:31