datepicker image icon not removing

datepicker image icon not removing

i've a datepicker with setting with image beside but i need to remove it dynamically.
  1. $(function() {
  2. $.datepicker.setDefaults({dateFormat: 'yy-mm-dd',
  3. showOn: "button",
  4.  buttonImage: "image/calendar.gif",
  5.  buttonImageOnly: true
  6.  
  7. });

  8. });

  1. function remove_element(element)
  2. {
  3.       element.parentNode.removeChild(element);
  4. }
only the text box is removing, the image icon still there.