I don't know if Kongregate would allow it or not, but it is possible to emulate a click event with jquery $.click, also it has $.focus which might work.
So something like
$(window).on('load',function(){
$('iframe').click();
})
or
$(window).on('load', function(){
$('iframe').focus();
})
might work, but i'm just guessing here.