cowboy / jquery-dotimeout

jQuery doTimeout: Like setTimeout, but better!
http://benalman.com/projects/jquery-dotimeout-plugin/
GNU General Public License v2.0
273 stars 34 forks source link

Long running script #4

Open gilesroberts opened 12 years ago

gilesroberts commented 12 years ago

Dear Ben,

I got the following error in IE8 after a long running test with a page open for about six hours. Obviously it's not a common error if the script has been running out the page fine for the previous six hours.

Message: Object doesn't support this property or method Line: 240 Char: 41 Code: 0 URI: http://www.stakemydog.com/Scripts/jquery-dotimeout/jquery.ba-dotimeout.js

I'm assuming it's referring to this function:

// Yes, there actually is a setTimeout call in here! function actually_setTimeout() { data.id = setTimeout( function(){ data.fn(); }, delay ); };

I'm guessing that data doesn't have the function fn defined. Do you have any idea what could be causing this or where to start debugging?

Regards Giles.