ashish
ashish

Reputation: 197

Message box in jQuery

Can any one suggest the code for creating message box in jQuery?

Upvotes: 17

Views: 119381

Answers (7)

koppor
koppor

Reputation: 20521

Upvotes: 2

Sergik666
Sergik666

Reputation: 125

Try this plugin JQuery UI Message box. He uses jQuery UI Dialog.

Upvotes: 4

classicjonesynz
classicjonesynz

Reputation: 4042

Do you mean just? alert()

function hello_world(){ alert("hello world"); }

Upvotes: 14

gor
gor

Reputation: 11658

If you don't wont use jquery.ui(that is highly recommended), you can take a look at Block.UI plugin.

Upvotes: 1

Kir
Kir

Reputation: 8111

Let me to recommend you a jQuery plugin for nice modal alers. It doesn't requires jquery UI.

Demo: http://www.webmasters.by/images/articles/jquery.alerts/index.html

Upvotes: 3

JK.
JK.

Reputation: 21808

jQuery UI Dialog right here: http://jqueryui.com/demos/dialog/

Upvotes: 5

Sotiris
Sotiris

Reputation: 40066

using jQuery UI you can use the dialog that offers. More information at http://docs.jquery.com/UI/Dialog

Upvotes: 9

Related Questions