How to deselect the value in Jquery Datepicker? i tried the following code but it doesn't work. any other idea?
 if (this.displayClear) {
       $pop.append(
          $('<a href="#" id="dp-clear">' + $.dpText.TEXT_CLEAR + '</a>')
             .bind(
                'click',
                function()
                {
                      c.clearSelected();
                      //help! reset the value to '': $(this.something).val('')
                      c._closeCalendar();
                }
             )
       );
    }
 
    