Check all check box through jquery.

<script type="text/javascript">
$(document).ready(function(){
    $('#checkAll').click(function () {
        $('input[type="checkbox"]').prop('checked',true);
    });
})
</script>




<form action="deleteorederlist.php" method="post">
 <input type="submit" name="delete" value="Delete">
          &nbsp;
          &nbsp;
           <input type="button" class="checkAll" id="checkAll" value="check all" />
</form>

Popular posts from this blog

Simple Sign up design. Android.

Cart page design in android.

Set Date on jDateChooser and retrieve record from database.