Luke101
Luke101

Reputation: 65238

How to make a jquery popup menu

I am trying to make a Login popup window. For example, if someone clicked the login button a popup window will show and it will change the opacity of the main page and give focus to the popup window.

Here is an example of a web site that utilizes what I want to implement.

Upvotes: 1

Views: 8648

Answers (5)

jayesh
jayesh

Reputation: 31

http://jqueryui.com/dialog/#modal-form

use this site link Use a modal dialog to require that the user enter data during a multi-step process. Embed form markup in the content area, set the modal option to true, and specify primary and secondary user actions with the buttons option.

Upvotes: 1

DannyLane
DannyLane

Reputation: 2096

You can use the jquery dialog referenced in your post for this.

Here is an example of how to create form elements on it.

Upvotes: 5

Fermin
Fermin

Reputation: 36081

I've used the Boxy plugin before, it's very lightweight (lighter than JQueryUI, although not as much functionality).

It's very easy to use, it was the first plugin I used when learning jQuery.

Upvotes: 1

Jeremy
Jeremy

Reputation: 363

you could also use the jQuery BlockUI plugin:

http://plugins.jquery.com/project/blockUI

Upvotes: 1

derek
derek

Reputation: 4886

you could use jqueryUI dialog

Upvotes: 3

Related Questions