Good jQuery popup dialog plugins
Do you know some g开发者_JAVA技巧ood jQuery popup dialog plugins? Thanks.
I like the one built into jQuery UI built in dialog the best. Very customizable, theme integration, overload confirms and alerts.
http://docs.jquery.com/UI/Dialog.
My personal favorite is Colorbox. It's extremely easy to use and looks great! Check out their 5 different pages of examples for a quick how-to.
It also automatically detects the size of the content being loaded so you don't have to specify a width and height.
alt text http://img502.imageshack.us/img502/4859/colorbox.png
I am using FaceBox in a project I am working on right now. I like it. Does not require jQueryUI.
Fancybox looks awesome and is really versatile. Used it in a couple of projects and my clients are really happy with it.
Here's my custom jquery dialog: https://jsfiddle.net/mm7b7t5t/ Still trying to add new features and improve it ^^
var example = new popup([{text: "Close}], "Title", "<p>Hello World</p>");
example.open();
精彩评论