JSFiddle - React, Tailwind, and code Playground

by danheberden

JavaScript

var testJson = '{"pageTitle":"\u062e\u0637\u0623 \u0639\u0646\u062f \u0627\u0644\u0625\u0631\u0633\u0627\u0644 !"}';
   

// parse ok?
console.log( $.parseJSON( testJson ) );

// just cuz we're 1337
$.ajax({
    url: '/echo/json/',    
    data: { json: testJson },
    dataType: 'json',
    type: 'post',
    success: function( data ) {
       console.log( 'its ajax, bitches' );
       console.log( data );     
    }
});