Skip to content

Instantly share code, notes, and snippets.

Created January 15, 2013 12:19
Show Gist options
  • Select an option

  • Save anonymous/4538223 to your computer and use it in GitHub Desktop.

Select an option

Save anonymous/4538223 to your computer and use it in GitHub Desktop.
<script>
var image = '';
var data = '';
$('#play').click(function(e){
e.preventDefault();
image+= '<img src="/game/handler_img.php">';
$('#screen').append(image);
});
$('#play,#vote1,#vote2,#vote3,#vote4').click(function(e){
e.preventDefault();
$.getJSON('/game/ajax.php', function(data) {
alert(data.values);
});
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment