I have an outlook calendar shown in an Iframe, an i would like to change the view from month to day. To do this i need to press ctrl+shift+alt+1 but how do i make this happen on the iframe?
As you can see, i have tried to du this in my fiddle
document.getElementById('frame').onload = function() {
var e = jQuery.Event("keydown");
e.which = 1; // # 1 code value
e.altKey = true; // Alt key pressed
e.shiftkey = true;
e.ctrlkey = true;
$("frame").trigger(e);
};
Can someone please tell me what to do?