1.im using php programming.how to call a function using select button in form but no output has been shown........
2.script page
3.body page..
2.script page
Code:
<script type="text/javascript">
function education_onchange()
{
alert("education onchange");
}
function personal_onchange()
{
alert("personal onchange");
}
</script>
Code:
<form name="form" id="form_job_seeker_home" action="" method="post"> <table border="1"> <tr> <td> <select > <option selected="selected">-select the option-</option> <option value="education" onchange="education_onchange();" id="education" >education</option> <option value="personal" onchange="personal_onchange();" id="personal">personal</option> </select> </td> </tr> </table> </form> </body>
Comment