i am using jquery date picker the calendar icon trigger image near textbox is by default is on top i want to set the image size (height) same as textbox height please give
You can edit class .ui-datepicker-trigger with jQuery but it's important to make editing after datepicker function.
Example:
$(#textbox1).datepicker({ showOn: "button", buttonImage: "calendar_1.png", buttonImageOnly: true )}; $(".ui-datepicker-trigger").css("margin-bottom","-6px");