JQueryUI, datepicker, and Polymer
Testing to get datepicker to bind to the right element.
by jamstooks
HTML
<link rel="stylesheet" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.14/themes/base/jquery-ui.css">
<h1>Basic Example</h1>
<p>Date: <input type="text" id="datepicker"></p>
JavaScript
$(function() {
$( "#datepicker" ).datepicker();
});