Skip to content Skip to sidebar Skip to footer

Window.open Not Working With Ie9

I'm having trouble getting this to work in IE9: edit: Sorry, I forgot to mention that $variable was a $_GET from a drop down menu selection. I am currently offline,

Solution 1:

Tested on IE9:

<?php

$variable = 3;

?>

<a 
onclick="window.open('https://domain.com/contact-form?chatq=<?php echo $variable;?   >@domain.com','resizable=1,width=320,height=200'); return false;">
<br />click to send an email.

</a>

Post a Comment for "Window.open Not Working With Ie9"