View previous topic :: View next topic |
Author |
Message |
Arctic -
Joined: 24 Sep 2004 Posts: 560
|
Posted: Thu Jun 02, 2005 1:25 am Post subject: HTML Form |
|
|
A message
Last edited by Arctic on Sat Apr 20, 2019 5:23 pm; edited 1 time in total |
|
Back to top |
 |
 |
roganty -
Joined: 08 Jun 2004 Posts: 357 Location: Bristol, UK
|
Posted: Thu Jun 02, 2005 11:57 am Post subject: Re: HTML Form |
|
|
see this line?
Code: | <select name='site' class='forminput' size='5' multiple='multiple' onChange="javascript:formHandler()"> |
change it to
Code: | <select name='site' class='forminput' size='5' multiple='multiple'> |
then add a button like so (notice the 'onclick')
Code: | <input type='button' value='Go!' onclick='formHandler()' /> |
put this line of code somewhere after the </select> and before </form> _________________ Anthony R
Roganty | Links-Links.co.uk |
|
Back to top |
|
 |
|