php - Open SCORM popup in the other screen -
i have implemented scorm in 1 of applications , works perfectly. using 2 screens development purposes , want open scorm pop-up in other screen whereas application on screen one(from request open scorm made).
is somehow possible deal it?
chrome's had issue bit - popup open position in chrome.
also how javascript open popup window on current monitor.
you should able use screen left position though work out math. did window appear left of browser window. again, chrome may issue.
leftposition = (window.screenleft != undefined ? window.screenleft : window.screenx) - width; topposition = 0; window.open(url, "title", "status=no,height=" + height + ",width=" + width + ",resizable=yes,left=" + leftposition + ",top=" + topposition + ",screenx=" + leftposition + ",screeny=" + topposition + ",toolbar=no,menubar=no,scrollbars=no,location=no,directories=no");
Comments
Post a Comment