datepicker issue
datepicker issue
I have a datpicker on a page and when I click the date I want nothing happens except a pound sign is appended to the url ? any ideas wht is wrong here is the html/javascript
<html>
<head>
</head>
<body>
<link rel="stylesheet" href="
https://ajax.googleapis.com/ajax/libs/jqueryui/1.8.16/themes/base/jquery-ui.css"
type="text/css" media="all" />
<script src="
https://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js"
type="text/javascript"></script>
<script src="
https://ajax.googleapis.com/ajax/libs/jqueryui/1.8.16/jquery-ui.min.js"
type="text/javascript"></script>
<script type="text/javascript" language="javascript">
$(function() {
$( ".datepicker" ).datepicker({showOn: "button",buttonImage: "
https://jqueryui.com/resources/demos/datepicker/images/calendar.gif",buttonImageOnly:
true});
});
</script>
<table>
<tr>
<td>StartDate:<input type="text" class="datepicker" id="StartDate"></td>
<td>EndDate:<input type="text" class="datepicker" id="EndDate"></td>
</tr>
</table>
Hello <b>null</b>!
</body>
</html>
Topic Participants
rob
jakecigar
jtara-jquery