Is it possible to bind tooltip and dateinput to the same input element?
I tried this way but it doesn't work.
Actually, it shows only a calendar box with the tooltip attribute settings (offset, position and opacity).
I'm using JQuery 1.4.2 and Tools 1.2.3.
I tried this way but it doesn't work.
$(":input").tooltip({
tipClass:'tooltip',
position:'center right',
offset:[10, 30],
effect:'slide',
opacity:1.0
});
/* Date Input*/
$(":date").dateinput({
format:'yyyy-mm-dd',
yearRange:[-100, 1],
selectors:true,
firstDay:1,
position:'bottom center',
offset: [0, 0]
});
Actually, it shows only a calendar box with the tooltip attribute settings (offset, position and opacity).
I'm using JQuery 1.4.2 and Tools 1.2.3.
