Created
November 17, 2015 22:39
-
-
Save bootcoder/1857119b1f00babb5d28 to your computer and use it in GitHub Desktop.
sample AJAX lecture code
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
$(document).ready(function() { | |
console.log("page loaded!"); | |
createUserListener(); | |
gifButtonListener(); | |
}); | |
var createUserListener = function() { | |
$('#createUser').on('click', function (event){ | |
event.preventDefault(); | |
var request = $.ajax({ | |
url: "/users", | |
type: "POST", | |
data: { "username": "TimTomToeBob" } | |
}) | |
request.done(function(response){ | |
console.log(response); | |
console.log(arguments); | |
console.log('YAYAYAYAYA'); | |
$('body').append('<h1>I made a new ' + response.username + '</h1>'); | |
}) | |
request.fail(function(response){ | |
console.log(response); | |
console.log(arguments); | |
console.log('FAILLLLL'); | |
}) | |
}) | |
}; | |
var gifButtonListener = function() { | |
$('#gifBTN').on('click', function(event){ | |
event.preventDefault(); | |
var request = $.ajax({ | |
type: 'GET', | |
url: 'http://api.giphy.com/v1/gifs/trending', | |
data: {"api_key": "dc6zaTOxFJmzC"} | |
}) | |
request.done(function(response){ | |
console.log('YAY'); | |
console.log(arguments); | |
// Work with response data to get the thing you want. | |
// Just some code for selecting a random array element. | |
var rand = response.data[Math.floor(Math.random() * response.data.length)]; | |
console.log(rand.images); | |
var img = rand.images.fixed_width.url | |
// Actual DOM manipulation. | |
$('.gif_container').append('<img class="gif_img" src='+ img +'>') | |
}); | |
request.fail(function(response){ | |
console.log("ohhh noooooo"); | |
}); | |
}); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment