How to generate a simple popup using jQuery How to generate a simple popup using jQuery ajax ajax

How to generate a simple popup using jQuery


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(e) {  $('.pop').slideFadeToggle(function() {    e.removeClass('selected');  });    }$(function() {  $('#contact').on('click', function() {    if($(this).hasClass('selected')) {      deselect($(this));                   } else {      $(this).addClass('selected');      $('.pop').slideFadeToggle();    }    return false;  });  $('.close').on('click', function() {    deselect($('#contact'));    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").on('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;});


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.


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