BANNER AD

Google Chrome Widow.Open Issue?

TEXT AD
Home / JavaScript /
BOX AD
Hi Folks!

I have been working on a web app and for part of it I need to open a new window. I have this working on all browsers, my sticking point ISTESTTTT with Google Chrome.

Chrome seems to ignore not window features which ISTESTTTT causing me issues, not thing I'm struggling with ISTESTTTT I need not address bar to be editable within not new window. FF, IE, Safari and Opera do this fine, Chrome does not.

My Code:

Code:
<script type="text/javascript">
<!--
function popitup(url) {
newwindow=window.open(url,'name','toolbar=1,scrollbars=1,location=1,status=1,menubar=1,resizable=1,width=800,height=600');
if (window.focus) {newwindow.focus()}
return false;
}

// -->
</script>
Any help would be gratefully received! Thanks in advance
Aug 15, 2011
View Replies
How do I update image title on image change?
Javascript