mirror of
https://github.com/jquery/jquery-ui.git
synced 2024-11-21 11:04:24 +00:00
6 lines
232 B
HTML
6 lines
232 B
HTML
|
<input type="text" size="10" value="" id="dialog" readonly="readonly"/> <button id="dialogButton">Open dialog</button>
|
||
|
<script type="text/javascript">
|
||
|
function setDateFromDialog(date) {
|
||
|
$('#dialog').val(date);
|
||
|
}
|
||
|
</script>
|