- From: Kelley, Pat@EDD <PKelley@edd.ca.gov>
- Date: Tue, 4 Nov 2003 08:28:30 -0800
- To: "'www-html-editor@w3.org'" <www-html-editor@w3.org>
- Message-ID: <9CF6ED1D2A5ED211BDCA00805FA783D11477B1E1@eddexmb05.cahwnet.gov>
In your Objects page you say that the "applet" code is deprecated, and that
we are to use objects instead. However when I change my applet code to
emulate your example the code stops working on IE but continues to work on
Netscape.
http://www.w3.org/TR/REC-html40/struct/objects.html
<http://www.w3.org/TR/REC-html40/struct/objects.html>
This element, supported by all Java-enabled browsers, allows designers to
embed a Java applet in an HTML document. It has been deprecated
<http://www.w3.org/TR/REC-html40/conform.html#deprecated> in favor of the
<http://www.w3.org/TR/REC-html40/struct/objects.html#edef-OBJECT> OBJECT
element.
The content of the
<http://www.w3.org/TR/REC-html40/struct/objects.html#edef-APPLET> APPLET
acts as alternate information for user agents that don't support this
element or are currently configured not to support applets. User agents must
ignore the content otherwise.
DEPRECATED EXAMPLE:
In the following example, the
<http://www.w3.org/TR/REC-html40/struct/objects.html#edef-APPLET> APPLET
element includes a Java applet in the document. Since no
<http://www.w3.org/TR/REC-html40/struct/objects.html#adef-codebase-APPLET>
codebase is supplied, the applet is assumed to be in the same directory as
the current document.
<APPLET code="Bubbles.class" width="500" height="500">
Java applet that draws animated bubbles.
</APPLET>
This example may be rewritten with
<http://www.w3.org/TR/REC-html40/struct/objects.html#edef-OBJECT> OBJECT as
follows:
<P><OBJECT codetype="application/java"
classid="java:Bubbles.class"
width="500" height="500">
Java applet
Pat Kelley
Associate Information Systems Analyst
Workforce Systems Division
800 Capitol Mall MIC 36
Sacramento CA 95814
916-654-8844
Received on Tuesday, 4 November 2003 11:43:22 UTC