Im pretty new to javascripts, and have been told this is a good exercise to start with, i'm trying to develop a small application combining a html form and a javascript applet.
I have set up a form within html and have inlcuded one text elememt and one button element, as below
<form id="form_1" method=“get" action=“login.jsp">
Enter URL String:
<input type="text" name="firstname" id="text_1_on_form"/>
<input type="button" id="button1" value="Send to Applet" />
</form>
I want to be able to type a website address, e.g. into the text part and then on the click of the button i want to display the text further down my html page within a java aplet section. Then inlcude another butoon in the applet to actually link to the website. Any pointers on where i should begin thinking/coding would be helpful.
I have set up a form within html and have inlcuded one text elememt and one button element, as below
<form id="form_1" method=“get" action=“login.jsp">
Enter URL String:
<input type="text" name="firstname" id="text_1_on_form"/>
<input type="button" id="button1" value="Send to Applet" />
</form>
I want to be able to type a website address, e.g. into the text part and then on the click of the button i want to display the text further down my html page within a java aplet section. Then inlcude another butoon in the applet to actually link to the website. Any pointers on where i should begin thinking/coding would be helpful.