Skip to content

Instantly share code, notes, and snippets.

@awareness481
Created February 8, 2017 13:54
Show Gist options
  • Save awareness481/29bb619064c83ab39b19777f1ee2a985 to your computer and use it in GitHub Desktop.
Save awareness481/29bb619064c83ab39b19777f1ee2a985 to your computer and use it in GitHub Desktop.
Rnd Quotes Test
<button id="quotes">New Quote</button>
<div id ="title"></div>
<p id ="content"></p>
<!-- JS file is inserted using Codepen -->
$(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