hello;
I am using a dropdown menu in my code and am trying to get it to automatically go to the new page when selected (I want to get rid of the submit button). It is in a table, here is the code I am using.
print(StartForm("Category", 'post', '', FALSE,
array("category"=>$category)));
CategorydropdownSelector(category, 0, 0, 1, 1, 5);
print("<SELECT NAME=\"name\" onChange='submit()'>");
print("</FORM>\n");
However this gives me two dropdown lists and no submitt button, but nothing happens when I choose an item. Any thoughts?
Shawn