Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am designing a web page. In that, when we click the content of div named mail, how can I show a popup window containing a label email and text box?

I searched in Google for a simple popup in jQuery, but the code is weird.

share|improve this question

6 Answers

up vote 114 down vote accepted

Something this simple doesn't need a plugin. This might look like a lot of code but it's really pretty simple.

First the CSS - tweak this however you like:

a.selected {
  background-color:#1F75CC;
  color:white;
  z-index:100;
}

.messagepop {
  background-color:#FFFFFF;
  border:1px solid #999999;
  cursor:default;
  display:none;
  margin-top: 15px;
  position:absolute;
  text-align:left;
  width:394px;
  z-index:50;
  padding: 25px 25px 20px;
}

label {
  display: block;
  margin-bottom: 3px;
  padding-left: 15px;
  text-indent: -15px;
}

.messagepop p, .messagepop.div {
  border-bottom: 1px solid #EFEFEF;
  margin: 8px 0;
  padding-bottom: 8px;
}

And the JavaScript:

function deselect() {
    $(".pop").slideFadeToggle(function() { 
        $("#contact").removeClass("selected");
    });    
}

$(function() {
    $("#contact").live('click', function() {
        if($(this).hasClass("selected")) {
            deselect();               
        } else {
            $(this).addClass("selected");
            $(".pop").slideFadeToggle(function() { 
                $("#email").focus();
            });
        }
        return false;
    });

    $(".close").live('click', function() {
        deselect();
        return false;
    });
});

$.fn.slideFadeToggle = function(easing, callback) {
    return this.animate({ opacity: 'toggle', height: 'toggle' }, "fast", easing, callback);
};​ 

And finally the html:

<div class="messagepop pop">
    <form method="post" id="new_message" action="/messages">
        <p><label for="email">Your email or name</label><input type="text" size="30" name="email" id="email" /></p>
        <p><label for="body">Message</label><textarea rows="6" name="body" id="body" cols="35"></textarea></p>
        <p><input type="submit" value="Send Message" name="commit" id="message_submit"/> or <a class="close" href="/">Cancel</a></p>
    </form>
</div>

<a href="/contact" id="contact">Contact Us</a>

Here is a jsfiddle demo and implementation.

Depending on the situation you may want to load the popup content via an ajax call. It's best to avoid this if possible as it may give the user a more significant delay before seeing the content. Here couple changes that you'll want to make if you take this approach.

HTML becomes:

<div>
    <div class="messagepop pop"></div> 
    <a href="/contact" id="contact">Contact Us</a>
</div>

And the general idea of the JavaScript becomes:

$("#contact").live('click', function() {
    if($(this).hasClass("selected")) {
        deselect();               
    } else {
        $(this).addClass("selected");
        $.get(this.href, function(data) {
            $(".pop").html(data).slideFadeToggle(function() { 
                $("input[type=text]:first").focus();
            });
        }
    }
    return false;
});
share|improve this answer
9  
+1 very nice code, do you have any other useful jquery code you care to share? – jasondavis Aug 25 '09 at 17:24
1  
to remove the html you add on close change the close method to $(".close").live('click', function() { $(".pop").slideFadeToggle(); $("#contact").removeClass("selected"); $(".pop").remove(); //add this... return false; }); this will correct the problem yo get when you click on the link more then once before closing the popup. nice answer by the way, slick and simple... – Jonx May 25 '10 at 23:10
6  
I just love stackoverflow.. :) Great code @Andy! – Lipis Jun 13 '10 at 23:36
18  
Implemented: jsfiddle.net/B4t3V – yahelc Nov 11 '10 at 2:04
6  
@yahelc Try clicking "Sign Up" more than once consecutively, then click "Cancel". Uh-oooohhhh. – AVProgrammer Oct 5 '11 at 0:18
show 12 more comments

Check out jQuery UI Dialog. You would use it like this:

The jQuery:

$(document).ready(function() {
    $("#dialog").dialog();
});

The markup:

<div id="dialog" title="Dialog Title">I'm in a dialog</div>

Done!

Bear in mind that's about the simplest use-case there is, I would suggest reading the documentation to get a better idea of just what can be done with it.

share|improve this answer
Other than Jquery whether i have to include any plugin?? @Karim – Rajasekar Aug 25 '09 at 14:55
2  
@Rajasekar - You will need to download the jQuery UI bundle and at the very least include ui.core.js and ui.dialog.js to get a Dialogue. If you want the dialogue to be draggable and/or resizable then you will need to include ui.draggable.js and ui.resizable.js. – karim79 Aug 25 '09 at 15:00

I use a jQuery plugin called ColorBox, it is

  1. Very easy to use
  2. lightweight
  3. customizable
  4. the nicest popup dialog I have seen for jQuery yet
share|improve this answer

There is a good, simple example of exactly this, here: http://www.queness.com/post/77/simple-jquery-modal-window-tutorial

share|improve this answer
Other than Jquery whether i have to include any plugin?? @Karim – Rajasekar Aug 25 '09 at 14:52

Visit this url

Jquery UI Dialog Demos

share|improve this answer

I think this is a great tutorial on writing a simple jquery popup. Plus it looks very

beautiful

share|improve this answer
This is very nice. – a coder Feb 11 at 21:01

protected by Community May 27 '11 at 7:18

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

Not the answer you're looking for? Browse other questions tagged or ask your own question.