can i change the image place using jquery
Posted
by kumar
on Stack Overflow
See other posts from Stack Overflow
or by kumar
Published on 2010-06-03T02:24:07Z
Indexed on
2010/06/03
3:04 UTC
Read the original article
Hit count: 158
jQuery
I have jquery datepicker code where i am dispalying one calander control to dispaly dateand time
$("input[id^='exc-flwup-<%=Model.ExceptionID%>']").datepicker({
duration: 0,
buttonImage: '/Content/images/calender.gif',
buttonImageOnly: true,
showOn:'button',
constrainInput: true,
showTime: true,
stepMinutes: 30,
stepHours: 1,
altTimeField: '',
time24h: true,
minDate: 0
});
Image button is allways coming left side of my textbox I need to keep it right side of my textbox is there any way I can adjust my image on this?
thanks
© Stack Overflow or respective owner