|
Re: Internet Explorer 6.0.2600 [message #3548 is a reply to message #3544] |
Sun, 30 June 2002 14:08 |
Ilia
Messages: 13241 Registered: January 2002
Karma: 0
|
Senior Member Administrator Core Developer |
|
|
I cannot seem to replicate the bug you've reported with IE 6.0.26 on Windows XP. Can anyone else please confirm this report?
FUDforum Core Developer
|
|
|
|
Re: Internet Explorer 6.0.2600 [message #3558 is a reply to message #3556] |
Mon, 01 July 2002 08:48 |
davew
Messages: 78 Registered: June 2002 Location: West Beach, South Austral...
Karma: 0
|
Member |
|
|
No, it's definitely Professional, with all the patches.
I just had a thought - I'm running AdSubtract - wonder if that is doing it ? (Although the errors appear to be javascript)??
I'll disable it and try again...
Nope - same thing...
Hmmmmmm......
Cheers,
Dave
[Updated on: Mon, 01 July 2002 08:50] Report message to a moderator
|
|
|
Re: Internet Explorer 6.0.2600 [message #3564 is a reply to message #3558] |
Mon, 01 July 2002 15:32 |
Ilia
Messages: 13241 Registered: January 2002
Karma: 0
|
Senior Member Administrator Core Developer |
|
|
I think your AdSubtract program may be messing up on the javascript:// url.
Do a simple test, create an HTML file with the following content, load it in yoru browser and click on the link on the page, see if you get an error as well.
<html>
<body>
<a href="javascript://" onClick="javascript: alert('hello');">Test</a>
</body>
</html>
FUDforum Core Developer
|
|
|
|
|
|
Re: Internet Explorer 6.0.2600 [message #5801 is a reply to message #5800] |
Fri, 20 September 2002 21:06 |
Ilia
Messages: 13241 Registered: January 2002
Karma: 0
|
Senior Member Administrator Core Developer |
|
|
I've just checked both of the bugs reported on Windows XP using IE 6.0.2600.0000 and am unable to replicate any of the bugs you've reported.
Make sure you have JavaScript enabled in your browser.
I'll ask more people to test this bug, but so far I've only heard to complaints about this issue EVER.
FUDforum Core Developer
|
|
|
Re: Internet Explorer 6.0.2600 [message #5810 is a reply to message #5801] |
Sun, 22 September 2002 18:41 |
kolerij
Messages: 58 Registered: July 2002
Karma: 0
|
Member |
|
|
I found that there is an issue with the <a> tag and how a javascript funtion is invoked.
Say you have the following:
<A class=GenLink
onclick="javascript: window_open('http://localhost/forum/index.php?t=poll&rid=1&S=9421d0d584e2f323db6fded8e078fd1e&frm_id=1', 'poll_creator', 400, 300);"
href="javascript://">[CREATE POLL]</A>
Nothing happens when you click [CREATE POLL]. But when I changed it to this:
<A class=GenLink
href="javascript: window_open('http://localhost/forum/index.php?t=poll&rid=1&S=9421d0d584e2f323db6fded8e078fd1e&frm_id=1', 'poll_creator', 400, 300);">[CREATE POLL]</A>
The Poll window came up fine, and this only happens in IE6. Javascript is enabled so that is not the problem.
Strage
[Updated on: Sun, 22 September 2002 18:45] Report message to a moderator
|
|
|
|
|