Hi,
I have a page that uses JQuery for an ajax call. Viewing the page in Chrome shows the following error in the developer console:
Uncaught TypeError: Cannot set property 'display' of undefined
While the same page runs in firefox 3.6.6 without any error in the firebug console.
The error emanates from a line in j-query-1.4.2 ( as shown in the chrome console)
Anyone else facing similar issues ?
Basically, I am using a DatePicker which shows up within a Modal Dailog.
Here is the code :
$(document).ready(function () {
$("#inputs input[name=dateField]").datepicker(
{
showOn: 'both',
dateFormat:'dd/mm/yy HH:II TT',
showButtonPanel: true,
maxDate: '+0D',
buttonImage:'calendar.gif',
buttonImageOnly: true,
}
);
});