Re: [jQuery] $.fn.updateIfModified problems

2006-09-27 Thread Jörn Zaefferer
Lewis, David schrieb: > var intervalTracker = new function() {}; > $.fn.updateIfModified = function (options) { > // default settings > this.defaultSettings = { > name: 'noName', > url: '/', > interval: 5000 > }; > > // merge

[jQuery] $.fn.updateIfModified problems

2006-09-27 Thread Lewis, David
I want to be able to have a progress bar periodically updated after a button is clicked, then when the server-side task is complete - the progress bar is no longer updated (to avoid hammering the server). I have attempted to write a plug-in that extends the functionality of the AJAX library loadIfM