Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is it possible to use addEventListener to detect mouseclicks inside an iframe? Or does iframe mean that we deal with a new document?

mouseButton = false;

jQuery(document).ready(function()
{
    document.addEventListener('mousedown', function(){mouseButton = true;}, false);
    document.addEventListener('mouseup', function(){mouseButton = false;}, false);
});
share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.