Last active
June 12, 2019 14:19
-
-
Save Fypex/5f1d269231bc9198bfb715aa572957fa 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
| $('#id-нажатой кнопки').click(function() { | |
| var data = $('#id-формы').serializeArray(); | |
| $.ajax({ | |
| url: '/login', | |
| type: 'POST', | |
| dataType : 'JSON', | |
| data: data, | |
| success: function(data) { | |
| }, | |
| }); | |
| }); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment