I use the Jquery from here JQUERY i tried all possible cases as per shown in the document for not popping-up the calendar on textbox but i could not stop it. So can any one help me on this to have a calendar pop-up only on clicking image available.
This is what i tried
<script type="text/javascript">
$(function() {
$('#ctl00_ContentPlaceHolder1_TextBox2').datepick({
showOn: 'button',
buttonImage: 'calendar.gif',
buttonImageOnly: true,
changeMonth: true,
changeYear: true,
showAnim: 'slideDown',
duration: 'fast'
});
});
</script>
What i want is to load calendar on image click and should not be focused when i have a cursor on Textbox
AFter all i got this