I am creating an extension plugin to the jQuery UI Date Picker plugin mostly to just standardize the options used, as well as to add an icon to open the calendar. I am aware of the plugin's use of an icon trigger, but this will not work, as I am using an icon in my sprite image and not wanting an additional request for a mere icon.
My plugin code:
(function($) {
$.extend($.fn, {
DatePicker: function() {
return this.each(function() {
$(this).datepicker({
showOtherMonths: true,
selectOtherMonths: true
}).after(
$("<a/>", { "href": "javascript:void(0)", "class": "icon-calendar", "text": "select date" }).click(function() {
$(this).prev("input").datepicker("show")
})
)
})
}
})
})(jQuery);
This works for everthing except producing the icon, so to test the code, I added the after function after the initialization of the plugin.
$(".date").DatePicker().after(
$("<a/>", { "href": "javascript:void(0)", "class": "icon-calendar", "text": "select date" }).click(function() {
$(this).prev("input").datepicker("show")
})
)
This is where it really perplexes me as this code does work to produce the calendar icon. while I could get it to work this way, it is obviously not the better choice as it should be part of the extension plugin and not get repeated in all of my various implementations of the plugin.