Closed
Bug 54366
Opened 25 years ago
Closed 25 years ago
<SCRIPT>document.write('<A HREF="url">');</script>ClickHere</a> fails.
Categories
(Core :: DOM: Core & HTML, defect, P3)
Tracking
()
VERIFIED
FIXED
Future
People
(Reporter: smorris, Assigned: jst)
References
()
Details
(Whiteboard: [rtm-] [smartupdate])
In the Smart Update site key links are not being
displayed as Beta 3 builds such as 2000092408 Win32 fail code like:
<SCRIPT>
document.write('<A HREF="url">');
</script>
ClickHere</A>
Note that the "ClickHere</A>" is outside of the <SCRIPT> tags.
See the example URL (above too):
http://jazz.netscape.com/users/smorris/publish/javaScriptTest_6b.html
The Smart Update site, as well as other sites that are generated
based on the user's prefs, platform, OS,etc., are failing with beta 3.
| Reporter | ||
Updated•25 years ago
|
Comment 1•25 years ago
|
||
rtm-, future. [This is ekrock.] ChrisN, TPringle, could you please inform the
Netcenter SmartUpdate contacts that (a) we won't be fixing this bug for RTM, so
(b) they will have to modify their content to use the simple workaround, which
is to have something like this:
<NOSCRIPT>
<A HREF="no_javascript_page.html">Click here</A>
</NOSCRIPT>
<SCRIPT>
document.write ("A HREF='javascript_page.html'>Click here</A>");
</SCRIPT>
... instead of this:
<NOSCRIPT>
<A HREF="no_javascript_page.html">
</NOSCRIPT>
<SCRIPT>
document.write ("A HREF='javascript_page.html'>");
</SCRIPT>
Click here</A>
Whiteboard: [rtm-]
Target Milestone: --- → Future
| Reporter | ||
Comment 3•25 years ago
|
||
The fix for 55462 seems to have fixed this bug! ;)
| Assignee | ||
Comment 4•25 years ago
|
||
Yup, this one is now fixed...
Status: NEW → RESOLVED
Closed: 25 years ago
Resolution: --- → FIXED
| Reporter | ||
Updated•25 years ago
|
Whiteboard: [rtm-] → [rtm-] [smartupdate]
You need to log in
before you can comment on or make changes to this bug.
Description
•