JSFiddle - React, Tailwind, and code Playground

by arjuncc

HTML

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<script src="http://code.jquery.com/jquery-1.9.1.min.js"></script>
<script src="https://raw.github.com/digitalBush/jquery.maskedinput/1.3.1/dist/jquery.maskedinput.min.js"></script>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Untitled Document</title>
<script>
jQuery(function($){  // $("#product").mask("99/99/9999",{placeholder:" "});
$("#" + "product").mask("99/99/9999",{placeholder:" "});

});
</script>
</head>
<body>
<input type="text" name="product" id="product"/>
</body>
</html>