JSFiddle - React, Tailwind, and code Playground

HTML

<input type="text" id="txt1" />

JavaScript

$('#txt1').on('blur', function () {
    var $this = $(this);
    if ($this.val() === '') {
        setTimeout(function () {
            $this.val('4/11/2013');
        }, 3000);
    }
});