|
I need some help at where to insert some javascript. I don't know
where to insert a certain action, javascript code, into a pull down
menu. Here is what some of the code looks like:
<form name="form" method="post" action="">
<select name="select">
<option>Google</option>
I want to insert something like this:
action="http://www.google.com/search" method="get" target"_blank"
<input name="q" value="">
The code is something like this. Where do I put the second piece of
code I mentioned? I want it to be like when you select Google in the
menu, you can type your query into the text area and get a google
result. I just don't get how to insert it.
|