Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

HELP! ShowModalDialog works in different way in %.0 and 5.5

Status
Not open for further replies.

ppientini

Programmer
Oct 12, 2000
8
0
0
IT
Let me describe the problem

copy the following text into a file called index.htm
-----------------
<html>
<head>
</head>
<body >
<script type=&quot;text/jscript&quot; language=&quot;JavaScript&quot;>
self.showModalDialog(&quot;glossary.htm&quot;,&quot;&quot;,&quot;&quot;)
</script>
</body>
</html>
-----------------
and the following one into a file called glossary.htm
-----------------
<html>
<head>
</head>
<body>
<P>
<A name=top href=&quot;#a&quot; >this is the first</A></P>
<P> &nbsp; </P>
<P>&nbsp;</P>
<P>&nbsp;</P>
<P>&nbsp;</P>
<P>&nbsp;</P>
<P>&nbsp;</P>
<P>&nbsp;</P>
<P>&nbsp;</P>
<P>&nbsp;</P>
<P>&nbsp;</P>
<P>&nbsp;</P>
<P>&nbsp;</P>
<P>&nbsp;</P>
<P>&nbsp;</P>
<P>&nbsp;</P>
<P>&nbsp;</P>
<P>&nbsp;</P>
<P>&nbsp;</P>
<P>&nbsp;</P>
<P>&nbsp;</P>
<P>&nbsp;</P>
<P>bla bla bla bla bla </P>
<P>bla bla bla bla bla </P>
<P>bla bla bla bla bla </P>
<P>bla bla bla bla bla </P>
<P>bla bla bla bla bla </P>
<P>bla bla bla bla bla </P>
<P>&nbsp;
<A name=a href=&quot;#top&quot; >return to top</A> </P>
</body>
</html>
--------------
Open index.htm with IE 5.5
the window will pop up in modal mode, if you click on the link,it will be showed the lower part of the page

With IE 5.0x clicking on the link cause the opening of a new window in modeless way

Has someone evr met this problem ? how can i solve it ?
I don't want the new window i like the way it works on IE 5.5, but i think is better not to force the user to update their IE 5.0 browsers!!!

Thanks to all who will help me. :-(



[sig][/sig]
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top