JSFiddle - React, Tailwind, and code Playground

by flackend

JavaScript

$(document).on('mousedown', function() {

    var data = JSON.encode({one: 1, two: 2});
    $.post('/echo/json/', {
        json: data,
        delay: 2
    },
    function(data) {
    
        console.log(data);
        console.log($.parseJSON(data));
    });
});