$(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);
      },
    });
  });
});