Forum Moderators: open

Message Too Old, No Replies

IE6, IE7+ Popup display Problem.

         

samu12

12:18 pm on Sep 11, 2008 (gmt 0)

10+ Year Member



Dear All
Greetings!

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

samu12

4:06 am on Sep 12, 2008 (gmt 0)

10+ Year Member



Dear All,
My problem is solved now.
It's because of white spaces in'Detail Descriptions of Coffee' that IE did not like. As I remove this It worked.

Thank you all
Samu

dreamcatcher

7:29 am on Sep 12, 2008 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



Glad you got it sorted Samu.

dc