Skip to content

Instantly share code, notes, and snippets.

@eto4detak
Created June 12, 2019 07:50
Show Gist options
  • Save eto4detak/d9a9bfea61dad1d2b85f1fb2072b2174 to your computer and use it in GitHub Desktop.
Save eto4detak/d9a9bfea61dad1d2b85f1fb2072b2174 to your computer and use it in GitHub Desktop.
ajax
document.addEventListener('DOMContentLoaded', function(){
EnviarCorreo();
});
function EnviarCorreo()
{
jQuery.ajax({
type: "POST",
url: 'coordinates.php',
data: {},
success:function(data) {
console.log('success');
console.log(data);
EnviarCorreo();
}
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment