Answers for "iam making a disable button , when I click on it disable it and the write please wait on this button in jQuery"

0

iam making a disable button , when I click on it disable it and the write please wait on this button in jQuery

<script type="text/javascript">
  $(document).ready(function(){
    $("input[type='submit']").attr("disabled", false);
    $("form").submit(function(){
      $("input[type='submit']").attr("disabled", true).val("Please wait...");
      return true;
    })
  })
</script>
Posted by: Guest on March-10-2022

Code answers related to "iam making a disable button , when I click on it disable it and the write please wait on this button in jQuery"

Browse Popular Code Answers by Language