Skip to content

Instantly share code, notes, and snippets.

@muzea
Last active September 25, 2017 06:08
Show Gist options
  • Save muzea/74bcf884d7becfc569189efbcab29b49 to your computer and use it in GitHub Desktop.
Save muzea/74bcf884d7becfc569189efbcab29b49 to your computer and use it in GitHub Desktop.
$(function() {
const url = 'YOUR URL';
$(".btn.getauthzcode").click(function () {
$.ajax({
url,
success: function() {
console.log(url);
},
}
})
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment