Created
November 13, 2016 19:21
-
-
Save zealfire/488525d32dc848f0933f6d9b2ad43717 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$(document).ready(function() { | |
function jQuerySubmit(type, url, data, contentType, dataType, handler) { | |
$.ajax({ | |
type: type, | |
url: url, | |
data: data, | |
contentType: contentType | |
dataType: dataType, | |
success: handler | |
}); | |
} | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment