JSFiddle - React, Tailwind, and code Playground
HTML
<input type="text" id="date" value="25/05/2015" />
<input type="button" id="button" value="get value test!"/>
JavaScript
$(function() {
$('#button').click(function() {
alert($('#date').val());
});
})