Skip to content

Instantly share code, notes, and snippets.

@Andygmb
Last active August 29, 2015 14:14
Show Gist options
  • Save Andygmb/634a9a701129e4c0ccef to your computer and use it in GitHub Desktop.
Save Andygmb/634a9a701129e4c0ccef to your computer and use it in GitHub Desktop.
var circle = $(".circle")
$("a").on("click", function(e){
e.preventDefault()
var url = this.href
$.ajax({
url:url,
success:function(response){
if (response === "True") {
circle.css("background-color", "green")
} else {
circle.css("background-color", "red")
}
}
})
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment