chasemedia
Programmer
OK, Im using the following script to open a new window, resize it and fill it with content, everything works fine on the MAC side as well as in FireFox, however it will not work on a Windows PC in Internet Explorer and its causeing quite a problem. Just wondering if anyone knows how I can make it work in all browsers and cross platform and everything.
Thanks in advance
Source Code:
//This is the function to launch a new browser window; action called on the onMouseUp event in the anchor tag
function popMeUpNone (url, name, width, height, resizable) {
settings = "toolbar=no, location=no, directories=no," +
"status=yes, menubar=no, scrollbars=no, resizable=" + resizable + "," +
"width=" + width + ", height=" + height;
myNewWindow = window.open(url, name, settings);
};
and its being called by:
<a href="#" onMouseUp="popMeUpNone('../videos/housetour.mov', 'CMI - Chase Media Inc - Portfolio - House Tour Demo', 700, 350, 'no');">
Hope you guys can help, Thanks again.
Thanks in advance
Source Code:
//This is the function to launch a new browser window; action called on the onMouseUp event in the anchor tag
function popMeUpNone (url, name, width, height, resizable) {
settings = "toolbar=no, location=no, directories=no," +
"status=yes, menubar=no, scrollbars=no, resizable=" + resizable + "," +
"width=" + width + ", height=" + height;
myNewWindow = window.open(url, name, settings);
};
and its being called by:
<a href="#" onMouseUp="popMeUpNone('../videos/housetour.mov', 'CMI - Chase Media Inc - Portfolio - House Tour Demo', 700, 350, 'no');">
Hope you guys can help, Thanks again.