Remember ‘board’ is case sensitive, and its what is in the value, not the displayed text.
1 2 3 4 5 6 7 8 9 10 11 |
<script> $(document).ready(function(){ $("#searchform").submit(function(){ if($("#first-choice").val()==="board"){ $(this).attr("action","mainreport2.php"); } }); }); </script> |