Plugins

The plugins site is currently in development.

We've been looking to provide a higher-quality, spam-free experience at the plugins site for some time, and a major error on our part forced us to shut down the current site before we could put the new one in place. We are developing a new site, and you can follow along with its development on GitHub. For more information about this transition, including steps you can take as a plugin author to prepare, please read our post about what's going on.

progress


progressDialog for jQuery

When we use ajax to call service,We often need to wait some time,For more humanistic,We Can show a loading information with progressDialog for jQuery.

ModalMsg

ModalMsg displays an updatable message to the user while blocking interaction with the page.

Use ModalMsg to notify a user that their form has been submitted and avoid accidentally submitting it twice.

ModalMsg is also useful when you want to load data before the user interacts with the page.

ModalMsg requires jQuery UI and is fully compatible with jQuery UI themes.

jQuery — Loadprocess

jQuery plugin for show information about loading:

var loading = $('#loading');

$().loadprocess({
  load_start: function() {
    loading.fadeIn(300);
  },

  load_end: function() {
    loading.fadeOut(300);
  }
});

Step Bar

A progress bar with controlled progression. Most of the progress bars I found were not very user friendly or didn't meet my needs. So I created this plugin and decided to post it in case others were in the same boat I was.

jQuery uploadprogress for PHP

uploadprogress v 0.3 - a jQuery plugin

copyright (c) 2008,2009 Jolyon Terwilliger

requires a web server running PHP 5.2.x with the
PHP uploadprogress module compiled in or enabled as a shared object:
http://pecl.php.net/package/uploadprogress

Dual licensed under the MIT and GPL licenses:

http://www.opensource.org/licenses/mit-license.php

http://www.gnu.org/licenses/gpl.html

description:

plugin to augment a standard file upload form with transparent background upload
and add uploadprogress meter to keep client informed of progress. (see requirements above)