Tagged Questions
0
votes
1answer
15 views
How can I compare date/time values using the jQueryUI datepicker and HTML5 time input?
I want to validate that the "begin" date/time pair predates the "end" date/time pair on a page. I'm using the jQueryUI datepicker, and the HTML5 time input element/widget.
This jQuery:
var begD ...
1
vote
1answer
36 views
Button to increase date in text box
I am writing following code.
<!doctype html>
<html><head>
<meta charset="utf-8" />
<title>jQuery UI Datepicker - Icon trigger</title>
<link ...
0
votes
1answer
23 views
Multiple settings in Jquery Datepicker
It seems there are so many helpful topics on this matter around SO however I cannot COMBINE them all. Standalone they work well. But it's combining the functions that I'm having issues with.
What I ...
0
votes
3answers
29 views
The datepicker on select option
The option onSelect in a jquery datepicker. The datepicker I have, only is execute the first time. When I select a different date, it does not do anything. I want that every time a user selects a new ...
0
votes
1answer
18 views
JQuery UI / Datepicker : How to initialize datepicker with an empty year?
My problem is the following :
On my website, I use the Jquery-ui datepicker to allow my visitor to enter a date.
I have configured the datepicker such users can modify the month and the year.
However, ...
0
votes
0answers
34 views
JQuery UI Date Picker - Adding a class to all selected <td>
I am trying to add a class to each <td> between two specific dates. Here is my code;
http://jsfiddle.net/7Q4Bt/171/
$(function() {
$(".checkin-date__input").attr("placeholder", ...
0
votes
2answers
28 views
JQuery UI - Datepicker - Display date in another element
I have the following code on Codepen.
http://codepen.io/anon/pen/pnyvG
My aim is to allow users to input their own dates and then it gets outputted into another element in a more readable format ...
0
votes
1answer
62 views
JQuery UI DatePicker Change Date to Text
I have added a JQuery UI datepicker to my website and would like to remove the text shown e.g. the date to show "Select Date..." is this possible if so how? As I have tried to alter this in the ...
0
votes
1answer
75 views
load jQuery UI .datepicker for a WP frontend plugin
First, I feel like I've read the whole stack of posts in this category about a 100 times. While the title sounds like a duplicate, I really mean I've tried all solutions I read to the questions asked ...
0
votes
0answers
14 views
jQuery date picker reset css classes
I have a collection of dates that I will use to instanciate my jquery datepicker widget. I have used beforeShowDay method to add a highlight css class to show on what days events are. The issue I ...
0
votes
1answer
15 views
Make jQuery datepicker pop upwards
My jQuery UI datepickers pop downwards and this makes them disappear across the bottom of the screen sometimes. I'd like to make them pop upwards instead.
I came across this solution
...
0
votes
2answers
50 views
Javascript doesn't work in first load
I'm use jquery UI datepicker and have a problem. My datepicker don't work in first load. I searched and try substitute document.ready for windows.load, but don't work too :/
My code is:
...
0
votes
0answers
31 views
jqueryUI datepicker onSelect not firing
I am using the jquery datepicker.
as soon as a date in selected(onSelect) i need to complete a function.
But my datepicker never fires the onselect.
my code is:
$('.datepicker').datepicker({
...
2
votes
1answer
73 views
jQuery Datepicker resets date when using different date format
I have found a possible bug: datepicker resets initial date when using different date format like "mm yy" or "yy". So, if a select a date, the second time a do this the date is not saved and today's ...
0
votes
1answer
23 views
Jquery datepicker beforeShowDay after initializing
When I am setting beforeShowDay after initializing it doesn't work
$("#dater").datepicker();
$("#dater").datepicker({
beforeShowDay: renderCalendarCallback
});
It will work when I will change ...