IIRC I had a similar issue with datePicker in IE and doing something
like this resolved it:
$(document).ready(function(){
setTimeout(function(){
$('#sample1').datePicker();
}, 50);
});
worth a quick try, at least. I've also had to use a setTimeout like that
for IE when there was Flash on the page.
- Jack
RyanEv wrote:
All,
I'm having an issue with the jquery.dates plug-in (http://
grover.open2space.com/jquery.dates/home). What is strange is that the
error only happens in IE and not in FF. Everything plays nice in FF.
The error I am getting in IE is the "the object does not support this
property or method" on line 29.
27: <script type="text/javascript">
28: $(document).ready( function () {
29: $("#sample1").datePicker();
30: $("#sample2").datePicker({format: "yyyy.mm.dd"});
31: $("#anchorSample3").datePicker({parent: $("#sample3")[0]});
Not sure why the datePicker() function would work in FF but not IE.
Do you guys think it has somethign to do with "$(document).ready
( function () {" on line 28? Is there an issue with jquery, IE and
this function? I am using jquery 1.3.
Ryan