Rudchyk
11/10/2017 - 1:09 PM

Event in the Iframe

Event in the Iframe

$('iframe').load(function() {
    $(this).contents().find('body').on('keyup', function(e) {
        console.log(e);
    });
});