|
Well, it works fine for me. Check your error console. Did you correct the alert syntax?
BTW, you would do better to change
var team = form.team.options[z].value;
to
var team = form.team.options[z].text;
so that they are thanked for supporting
Blackburn Rovers
rather than
blackburn_rovers
or make the option values the same as the text.
Note that
function make(form) { //opening brace on same line
is to be preferred to
function make(form)
{
to avoid the risk of a fatal error of putting a semi-colon after function make(form)
BTW, when posting here please help us to help you by following the posting guidelines and wrapping your code in [code] tags. This means use the octothorpe or # button on the toolbar which will insert opening [ code ] and closing [ /code ] tags - omit the spaces. You can (and should) edit your previous post.
Last edited by Philip M; 12-06-2009 at 04:52 PM..
|