JSFiddle - React, Tailwind, and code Playground

by rwaldin

HTML

<div id="foo"></div>

<p>Weird, this is only broken in Safari (i'm on version 5.1.3 on MacOS X Lion).</p>

<p>Works fine in Chrome, FF, and IE.</p>

CSS

p{margin-top: 10px;}

JavaScript

var dateStr = "Wed Mar 1 2034",
    date = new Date(dateStr),
    elem = document.getElementById('foo'),
    text = dateStr + ' is ' + date.toDateString();

elem.appendChild(document.createTextNode(text));