I want to run two ajax functions on click event of checkbox.
When I do implement second second ajax functions, first one does not runs.
Here is the code
Check Box
<input type="checkbox" value="<?php if(isset($_POST['inactive_check'])) echo $_POST['inactive_check']; ?>" [B]onclick="disablebatch(); selectinactivecourse(this.checked); allbatches(this.value); "[/B] id="inactive_check" name="inactive_check" <?php if(isset($_POST['inactive_check'])) echo "checked";?>></div><div style=" float:left; padding-top:2px; padding-left:5px;">
In the bold, its ok to call more two AJAX functions ??