Jquery – Add calendar jquery image to datepicker

datepickerjqueryjquery-uijquery-ui-datepicker

I am not sure how to add the ui-icon ui-icon-calendar class as a datepicker image beside the text field. I want something like this: http://jqueryui.com/demos/datepicker/#icon-trigger, but it should have the jquery calendar image.

Best Answer

<script>
        $(function() {
            $( "#datepicker" ).datepicker({
                showOn: "button",
                buttonImage: "http://jqueryui.com/resources/demos/datepicker/images/calendar.gif",
                buttonImageOnly: true
            });
        });
</script>