PDA

View Full Version : Buttons


Viktor87
04-15-2005, 08:28 PM
Hey guys,
I was trying to set up few buttons so they will open pages in
the frame but I stuck, I just don't know where to stick the frame
content so it will open the page in the frame I need.
For example:

<input type="text" name="q" size="30" />
<input type="submit" value="Search Web" />

This will be open in the new/current window, how can I make it
open the window in the "Main" frame.

Thanks for any help!

Harry Armadillo
04-15-2005, 09:54 PM
http://www.codingforums.com/showthread.php?t=17515

glenngv
04-18-2005, 05:24 AM
You posted in the wrong forum. This belongs to Javascript forum. This forum is for completed scripts that you want to share to others.

In case the mods decided to move it to the right forum and not delete it, this is the solution to your problem.

<form name="..." action="..." target="Main">
<input type="text" name="q" size="30" />
<input type="submit" value="Search Web" />
</form>