JQueryUI, datepicker, and Polymer
Testing to get datepicker to bind to the right element.
by jamstooks
HTML
<link rel="stylesheet" href="http://code.jquery.com/ui/1.10.4/themes/smoothness/jquery-ui.css">
<h1>Standard Example</h1>
<p>Date: <input type="text" id="datepicker"/></p>
<script src="//code.jquery.com/jquery-1.9.1.js"></script>
<script src="//code.jquery.com/ui/1.10.4/jquery-ui.js"></script>
JavaScript
$(function() {
$( "#datepicker" ).datepicker();
});