Created
May 8, 2020 00:21
-
-
Save jcroot/185c13d8c6ba5812783ea2c924c93da4 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
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