zjm1126
zjm1126

Reputation: 66637

Good jQuery popup dialog plugins

Do you know some good jQuery popup dialog plugins? Thanks.

Upvotes: 0

Views: 1433

Answers (5)

seahorsepip
seahorsepip

Reputation: 4809

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();

Upvotes: 0

Graham Swan
Graham Swan

Reputation: 4828

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

Upvotes: 1

Mariano Cavallo
Mariano Cavallo

Reputation: 959

Fancybox looks awesome and is really versatile. Used it in a couple of projects and my clients are really happy with it.

Upvotes: 0

Sky Sanders
Sky Sanders

Reputation: 37074

I am using FaceBox in a project I am working on right now. I like it. Does not require jQueryUI.

Upvotes: 0

Dustin Laine
Dustin Laine

Reputation: 38503

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.

Upvotes: 1

Related Questions