How to submit a score to a scoreboard with JQuery

Submitting a score with JQuery is very simple. Below is an example that will post a score when the page is loaded. Update the URL and the scoreboard key from your edit game page once you have created a scoreboard. This example won't work until you have uploaded your files on to the site.

<html>
<head>
<script src="https://code.jquery.com/jquery-3.2.1.min.js"
integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4="
crossorigin="anonymous"></script>
</head>
<body>
<script>
$.ajax({
type: 'POST',
url: 'your Post URL',
data: {
'scoreboardKey': 'your_scoreboard',
'name': 'Test',
'score': 100
},
success: function(msg){
alert('Success ' + msg);
}
});
</script>
</body>
</html>
 

Also take a look at how to do this in construct 2, it will give you an idea of how the scoreboard settings work: