JSFiddle - React, Tailwind, and code Playground
by lostinplace
HTML
<script src ="http://ajax.cdnjs.com/ajax/libs/json2/20110223/json2.js"></script>
<span id="herp"></span>
JavaScript
jQuery.support.cors = true;
$(function(){
var settings = {
url:"http://lostinplace.iriscouch.com/eveskills/8cfa351ddedb6a561fbd67db05002278",
type: "put",
data: { '{ "Name": "Thermodynamics","SkillID":"87456"}}',
//dataType:"jsonp",
success:function(result){$('#herp').text(JSON.stringify(result));},
error:function(result){
$('#herp').text(JSON.stringify(result));
}
};
//debugger;
$.ajax(settings);
});