I have a problem with my backend aplication. I have data field in my form, for which I am using plugin jQuery DataPicker. At first it works fine - when I click on the field cal
In the datpicker javascript file at line 510
this._trigger('hide');
Inside this method it is attempting to fire a jQuery event, because of the way that jQuery handles events and custom events it will look at the methods defined on the DOM object, and then go to native events and then custom events (I think) so it is finding the Element#hide()
method that sets the style to display:none
so 2 solutions
datepicker:hide