I am using jquery ui datepicker icon trigger. I want to give the icon link, that is when the mouse is over the calendar, I want to change the cursor. How can I do that?
http://jqueryui.com/demos/datepicker/#icon-trigger
my code is as follows:
$( "#datepicker" ).datepicker({
changeMonth: true,
changeYear: true,
yearRange:"-90:+0",
showOn: "both",
buttonImage: "images/calendar.gif", //my gif is here
buttonImageOnly: true
});
You can do it by using the following CSS (using the class asigned to the image by jQuery UI):
As you can see here.