How do I get what the wrote in the applet using the
applet in a form that will post to another page that will
get the value of what was enetered in the applet?
Please notice that in hd.html when using linux/firefox, the
EMBED tag have no ID="Head" so you get a
"document.getElementByID("Head") has no properties" error.
Just adding the ID it works.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Logged In: NO
I've just started working with this applet, and was wondering
the same thing. Here is a place to start:
http://java.sun.com/products//plugin/1.2/docs/jsobject.html
We should be able to use JavaScript to communicate what is
in the applet to the form before submition.
johnmjones at mindspring dot com
Logged In: NO
You can get it with
document.getElementById('Head').getDocumentText
or
document.getElementById('Head').getDocumentBody
Logged In: NO
Please notice that in hd.html when using linux/firefox, the
EMBED tag have no ID="Head" so you get a
"document.getElementByID("Head") has no properties" error.
Just adding the ID it works.