How can I merge two separate javascripts in one? I have two separate javascripts. One sends form data to post.php page without page refresh AND refreshes DIV content with (div.php) , but second disables corresponding form submit button. How can I merge this code in one? (not that I have many forms with different id’s in one page). Problem is on IE9, where this script double submits data!!!
$(function() {
  $('form').on('submit', function(e) {
    $.ajax({
      type: 'post',
      url: 'post.php',
      data: $(this).serialize(),
      success: function(returnedData) {
        $('#sidebar').load('div.php');
      }
    });
    e.preventDefault();
  });
});
$(document).ready(function() {
  $('input[type=submit]').click(function() {
    $(this).prop("disabled", true);
    $(this).val("Selected");
    $(this).closest('form').trigger('submit');
  });
});<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script> 
     
     
    