You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<scriptsrc="jquery.js"></script><scriptsrc="dist/jquery.ajax-retry.min.js"></script><script>jQuery(function($){//this will try the ajax call three times in total //if there is no error, the success callbacks will be fired immediately//if there is an error after three attempts, the error callback will be called$.ajax(options).retry({times:3}).then(function(){alert("success!");});//this has the same sematics as above, except will wait 3 seconds between attempts$.ajax(options).retry({times:3,timeout:3000}).then(function(){alert("success!");});//this will only retry if the response status code matches the ones we specify$.ajax(options).retry({times:3,statusCodes: [503,504]}).then(function(){alert("success!");});});</script>
Contributing
In lieu of a formal styleguide, take care to maintain the existing coding style. Add unit tests for any new or changed functionality. Lint and test your code using grunt.
Also, please don't edit files in the "dist" subdirectory as they are generated via grunt. You'll find source code in the "src" subdirectory!
Release History
(Nothing yet)
License
Copyright (c) 2012 John Paul
Licensed under the MIT license.