JSFiddle - React, Tailwind, and code Playground

by Qwerty_Wasd

JavaScript

//https://jsonplaceholder.typicode.com/posts
$(document).ready(function() {
  $.post("https://jsonplaceholder.typicode.com/posts")
    .done(function(data) {
      console.log(data);
  });
});

// fetch('https://jsonplaceholder.typicode.com/posts')
//   .then(response => response.json())
//   .then(json => console.log(json))