Forum Moderators: open
I am having much trouble to display popup in IE6 AND IE7. The Popup is working fine in firefox, camino. What I am missing, I don't know, I even lesser knoledge of Javascript. Searched forum but no joy.
Your hlep is quite appreciated.
Java code
<script type="text/javascript">
var newwindow;
function popup(url)
{
newwindow=window.open(url,'Detail Descriptions of Coffee','height=200,width=300');
if (window.focus) {newwindow.focus()}
}
Calling of Java is done this way
<td><a href="javascript:popup('/order/main/detaildescription/description/<?php echo $id; ?>');"><?php echo $fcoffname ?></a></td>
I spent Days.. on this..
Expecting help on this forum
Samu