datepicker image icon not removing
i've a datepicker with setting with image beside but i need to remove it dynamically.
- $(function() {
- $.datepicker.setDefaults({dateFormat: 'yy-mm-dd',
- showOn: "button",
- buttonImage: "image/calendar.gif",
- buttonImageOnly: true
-
- });
- });
- function remove_element(element)
- {
- element.parentNode.removeChild(element);
- }
only the text box is removing, the image icon still there.