This is probably an easy task but I can't find an example.
Heres what I'm trying to do.
1 page
<html>
<iframe src="small.html " frameborder="0" width="800" height="290">
</iframe>
</html>
OPENS small.html (Page 2) and has a text box for user input.
Input your message:
<input type="text" name="Part Number" value="11111" size="20">
THEN after user has typed something they hit(triggered) a button
<input type="text" value="Submit" />
WHICH calls some.html(page 3)
<form action="some.ht ml" method="get">
some.html is generic and pops up.
How do I get the text that was entered in by the user from the
small.html(page 2)
ps.once this is accomplished how to I send data(text) back from page 3 to page 2?
This is the NewGuy so any code would be great.
Thanks.
Heres what I'm trying to do.
1 page
<html>
<iframe src="small.html " frameborder="0" width="800" height="290">
</iframe>
</html>
OPENS small.html (Page 2) and has a text box for user input.
Input your message:
<input type="text" name="Part Number" value="11111" size="20">
THEN after user has typed something they hit(triggered) a button
<input type="text" value="Submit" />
WHICH calls some.html(page 3)
<form action="some.ht ml" method="get">
some.html is generic and pops up.
How do I get the text that was entered in by the user from the
small.html(page 2)
ps.once this is accomplished how to I send data(text) back from page 3 to page 2?
This is the NewGuy so any code would be great.
Thanks.
Comment