Skip to content

Instantly share code, notes, and snippets.

@androidzhibinw
Created January 20, 2016 01:58
Show Gist options
  • Save androidzhibinw/885935d5a37daff93b74 to your computer and use it in GitHub Desktop.
Save androidzhibinw/885935d5a37daff93b74 to your computer and use it in GitHub Desktop.
jquery ajax post example
$(document).ready(function (){
$('#btn-send').click(function countdown(){
var phoneNumber = $('#phone').val()
$.ajax({
method: "POST",
url: "/getcode",
data: JSON.stringify({"number":phoneNumber},null,4),
contentType:'application/json;charset=UTF-8'
})
30 });
31 });
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment