JSFiddle - React, Tailwind, and code Playground

by Wilzon Mariño Bueno

HTML

<link rel="stylesheet" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.24/themes/base/jquery-ui.css">
<input type='text' id='date'>

JavaScript

$(function() {    
    $('#date').datepicker();
    $('#date').datepicker('setDate', '04/23/2014');
});