JSFiddle - React, Tailwind, and code Playground
HTML
<table>
<td class="td-time" rel="06/02/2014">09.00</td>
</table>
JavaScript
var firstRowDate = $('.td-time:first-child').attr('rel');
var date = new Date(firstRowDate);
document.write(date.toDateString());