Skip to content

Instantly share code, notes, and snippets.

@jcroot
Created May 8, 2020 00:21
Show Gist options
  • Save jcroot/185c13d8c6ba5812783ea2c924c93da4 to your computer and use it in GitHub Desktop.
Save jcroot/185c13d8c6ba5812783ea2c924c93da4 to your computer and use it in GitHub Desktop.
function logme(mrc)
{
$.ajax({
url : "log.php",
type : "get",
async: false,
data: {
'mrc': mrc
},
success : function(response) {
console.log(response);
},
error: function() {
console.log("error");
}
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment