Authors
-
3 Jul Did you ever ask yourself how can you display a “loading” indicator when you make ajax calls using various libraries? The simple but efficient answer is this: 1 2 3 4 5 6 $(document).ready(function(){ $('Loading...') .ajaxStart(function() {$(this).show();}) .ajaxStop(function() {$(this).hide();}) .appendTo('body'); }); And that’s all. You need to do this only once. Ofcourse, you can apply some CSS styles to #busy div, using an image generated with ajaxloa (Read Full Article)
Related Articles
- jQuery UI: Interactions and Widgets
- also categorized in jQuery
- Non-Stop jQuery
- also categorized in jQuery
- jQuery at the Boston Ruby Group
- also categorized in jQuery
- Ajaxian Featured Tutorial: Parsing XML with jQuery
- also categorized in jQuery
- Ajaxian Featured Tutorial: Parse JSON with jQuery and JavaScript
- also categorized in jQuery
- Lazy Load Plugin for jQuery
- also categorized in jQuery
- iPhone Web Development: Dojo and jQuery
- also categorized in jQuery
- Thoughts on Open Source Community
- also categorized in jQuery
- Building Interactive Prototypes with jQuery
- also categorized in jQuery
- jQuery v1.2: Major new release, sneak peak at jQuery UI
- also categorized in jQuery






Recent Comments
joew » Partial Functions in JavaScript
This is a fascinating article, partial function application is a really useful technique John's ...
pawan » Google
Here are two other similar products which I bookmarked in the past: http://www.maani ...
See all recent comments