I am unable to set the focus to an element inside an iframe.
My page inside the iframe has a div with the id "packagetab2". Inside this iframe I have a Javascript function called by an onclick of an element inside the iframe.
function movefocus(e) {
window.focus();
document.getElementById("packagetab2");
}
Is there a solution?
Note - this scenario is from inside an iframe.