I really like http://malsup.com/jquery/ plugins, here will be mentioned about Jquery.Corner, Jquery.BlockUI and Jquery.cycle. They all are very good documented, developer friendly and got very good demos.
Highly recommend to look their help pages for more information, written below are very limited to compare their capacities.
Jquery.Corner
Add corners easly to your divs with given parameters
$(‘#maintabs’).corner(); //basic round shape corners
Demo page shows other styles : http://malsup.com/jquery/corner/
Jquery.BlockUI
One of the famous with cycle plugin. Mainly use for blocking user interface. I also used it like loading animation. You can block all page or selected elements. Also can use for modal windows.
Basic use with custom message : $(#containerid).block({ message: msg });
For unblock : $(#containerid).unblock();
If you don’t like default CSS, you can override with:
$.blockUI.defaults.css = {};
With jquery’s extendable structure we can extend $.ajax too. If you aim block all user interface while ajax doing its work, with code below you can handle all of them with one time definition.
$(document).ready(function() {
$().ajaxStart($.blockUI).ajaxStop($.unblockUI);
});
Or you can start blocking in $.ajax.beforeSend and unblock in $.ajax.complete in specific ajax requests. $.ajax.complete is called regardless of if the request was successful, or not. So, for unblock $.ajax.error or $.ajax.success are other options. It is better take a look here: http://docs.jquery.com/Ajax_Events
Jquery.Cycle
I guess most known plugin here. You probably saw it in a lot of list of plugins posts in blogs. My beginning times when I was looking for a gallery plugin, i interested more with some complete, fancy solutions than Jquery.Cycle. But after tried others for reasons like no pagination, low performance or no extensibility problems, started to write my own gallery. (My own gallery means here prepare data for cycle and some required modifications)
I was thinking about to put some codes, but its “options”, “tutorials”, “even more demos” pages are already great.
Here my gallery built with cycle http://www.inaea.org/InAEAGallery.aspx
I mentioned about that in this post : http://mefeozer.wordpress.com/2009/10/03/new-image-gallery-work/
Beside these plugins I used some other authors plugins like prettyPhoto, fitted, hoverintent. I will write about them later.
Note : These plugins are used in non-profit educational organization website’s gallery application and no commercial profit for myself too.



