I have altered the actiniccore.js as below in order to disable scrollbars and make the window look neater.
function ShowPopUp(sUrl, nWidth, nHeight)
{
window.open(sUrl, 'ActPopup', 'width=' + nWidth + ',height=' + nHeight + ',scrollbars=no, resizable=no');
}
It works fine on most browser / computer combinations but not on others. i.e. the scrollbars still appear on some combinations.
It is not as simple as the browser version or the operating system version! IE6 on one XP machine will work and on another it won't!
Any ideas anyone? Is my syntax correct?
function ShowPopUp(sUrl, nWidth, nHeight)
{
window.open(sUrl, 'ActPopup', 'width=' + nWidth + ',height=' + nHeight + ',scrollbars=no, resizable=no');
}
It works fine on most browser / computer combinations but not on others. i.e. the scrollbars still appear on some combinations.
It is not as simple as the browser version or the operating system version! IE6 on one XP machine will work and on another it won't!
Any ideas anyone? Is my syntax correct?
Comment