According to [[ http://plugins.jquery.com/project/timeout_interval_idle ]], I should be able to say:
$.interval(function() { alert('I happen every 8 seconds'); }, 8000);
and have the given function run every eight seconds.
However the error console says "$.interval is not a function". I have tried this under jQuery 1.4.2 and 1.4.3, both give the same error.
What am I doing wrong?