Created
February 8, 2017 13:54
-
-
Save awareness481/29bb619064c83ab39b19777f1ee2a985 to your computer and use it in GitHub Desktop.
Rnd Quotes Test
This file contains 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
<button id="quotes">New Quote</button> | |
<div id ="title"></div> | |
<p id ="content"></p> | |
<!-- JS file is inserted using Codepen --> |
This file contains 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() { | |
$("#quotes").click(function() { | |
$("#showQuotes").empty(); | |
$.ajax({ | |
url: "http://quotesondesign.com/wp-json/posts? filter[orderby]=rand&filter[posts_per_page]=1", | |
success: function(data) { | |
var post = data.shift(); | |
$("#title").html(post.title); | |
$("#content").html(post.content); | |
}, | |
}); | |
}); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment