I'm trying to setup my css menu so that one of the text links triggers a datepicker calandar to open. I have stripped everything down to the code below. The problem I am experiencing is that the code below does not work but when I remove the ul, li tags it starts working.
I am using 1.8.0 JQuery and 1.8.23 JQuery UI.
<!DOCTYPE html>
<head>
<script type="text/javascript" src=".8/jquery.min.js"></script>
<script type="text/javascript" src=".8/jquery-ui.min.js"></script>
<script type="text/javascript">
$(document).ready(function() {
$("#dp").datepicker({
onSelect: function(dateText, inst) {
alert(dateText);
},
});
$("#datep").click(function() {
$("#dp").datepicker("show");
});
});
</script>
</head>
<body>
<ul>
<li><a href="#" id="datep">Test</a><input type="hidden" id="dp" /></li>
</ul>
</body>
</html>
Some weird things I have noticed. If I move the input under the ul it works kind of but will get an error after a few clicks on and off but if I add empty div under that input then it will start working normally it seems.
Any help is greatly appreciated.
I'm trying to setup my css menu so that one of the text links triggers a datepicker calandar to open. I have stripped everything down to the code below. The problem I am experiencing is that the code below does not work but when I remove the ul, li tags it starts working.
I am using 1.8.0 JQuery and 1.8.23 JQuery UI.
<!DOCTYPE html>
<head>
<script type="text/javascript" src="https://ajax.googleapis./ajax/libs/jquery/1.8/jquery.min.js"></script>
<script type="text/javascript" src="https://ajax.googleapis./ajax/libs/jqueryui/1.8/jquery-ui.min.js"></script>
<script type="text/javascript">
$(document).ready(function() {
$("#dp").datepicker({
onSelect: function(dateText, inst) {
alert(dateText);
},
});
$("#datep").click(function() {
$("#dp").datepicker("show");
});
});
</script>
</head>
<body>
<ul>
<li><a href="#" id="datep">Test</a><input type="hidden" id="dp" /></li>
</ul>
</body>
</html>
Some weird things I have noticed. If I move the input under the ul it works kind of but will get an error after a few clicks on and off but if I add empty div under that input then it will start working normally it seems.
Any help is greatly appreciated.
Share Improve this question asked Aug 30, 2012 at 23:00 BrandonBrandon 3201 gold badge4 silver badges13 bronze badges 4- Why would you use a hidden input element for a datepicker? Use a normal text input and hide it with CSS (display:none). – j08691 Commented Aug 30, 2012 at 23:06
- Both produce the same results. – Brandon Commented Aug 30, 2012 at 23:19
- looks like a jQueryUI bug to me – Maksim Vi. Commented Aug 30, 2012 at 23:26
- As @Maksim Vi said below using visibility:hidden; and width:0;border:none; does work where display:none; wasn't for text input. – Brandon Commented Aug 31, 2012 at 0:03
3 Answers
Reset to default 9So this is a bug. You'll have to add a block-level element right after the hidden input:
HTML:
<ul>
<li><a href="#" id="datep">Test</a>
<input type="hidden" id="dp" />
<div></div>
</li>
</ul>
Example: http://jsfiddle/andrewwhitaker/LE2CG/1/
Another version with hidden text: http://jsfiddle/sKXJt/ Working Demo http://jsfiddle/BhqmY/
This will help for hidden textbox:
http://forum.jquery./topic/attaching-datepicker-to-an-icon-for-a-hidden-input-field
Open JQuery Datepicker by clicking on an image w/ no input field
Hope it will help the cause :)
I am not sure about the downvote :)
anyhoo see the version with the hidden text here: http://jsfiddle/sKXJt/
Code
$(document).ready(function() {
$("#dp").datepicker({
onSelect: function(dateText, inst) {
alert(dateText);
},
});
$('#datep').click(function() {
$('#dp').datepicker('show');
});
});
working image
Since I'm using this throughout my project, I created a pact jQuery plug-in to do this, and decided to share.
JSFiddle: https://jsfiddle/yahermann/xyjhyqma/
HTML:
<span class="some-datepicker-class">
<a href="(some link)" data-date-param="(some date param)">(some initial date)</a>
</span>
JAVASCRIPT:
$('span.some-datepicker-class').datepicker_link(); // see jsfiddle for options
The default onSelect handler takes an optional link & date parameter set in the initial HTML. If both are provided, then upon selecting a new date, the plugin will load the provided link and include the selected date as a value to the provided parameter. Example:
<a href="http://example." data-date-param="mydate">2018-05-05</a>
The initial date 2018-05-05 will be displayed. Upon selecting a new date, the plugin will load the following page: http://example.?mydate=(new_date)
If this functionality is not desired, just set href="#" and/or provide your own onSelect callback instead.
发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743638008a4482478.html
评论列表(0条)