Skip to content

Instantly share code, notes, and snippets.

@Fypex
Last active June 12, 2019 14:19
Show Gist options
  • Select an option

  • Save Fypex/5f1d269231bc9198bfb715aa572957fa to your computer and use it in GitHub Desktop.

Select an option

Save Fypex/5f1d269231bc9198bfb715aa572957fa to your computer and use it in GitHub Desktop.
$('#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