Jump to content

jquery popup with different content


brown2005

Recommended Posts

This isn't that hard to do. Here is some code i use to do the same sort of thing...

 

$(document).ready(function() {
    $('.overlay').click(function() {
        // If a dialog is already open, close it.
        if ($('.dialog').length > 0) {
            $('.dialog').dialog('close');
        }
        // Get the name of the file used to fill
        // the dialog with content.
        var file = $(this).attr('name');
        // Create the empty div to store the dialog content in.
        var $dialog = $('<div class="dialog"></div>')
        // Load the content into the div.
        .load(file)
        // Initialize the dialog.
.dialog({
            autoOpen: false,
            resizable: false,
            height: 472,
            zIndex: 40000,
            //modal: true,
            width: 792,
        });
        // Open the new dialog.
        $dialog.dialog('open');
    });
});

 

As you can see, this code takes a filename loaded from the name attribute of the link you've clicked on and loads it into the dialog's content.

 

So, to work this you would have links like....

 

<a href="#" name="foo.html" class="overlay">foo</a>
<a href="#" name="bar.html" class="overlay">bar</a>

 

Clicking 'foo' would open a dialog with the contents of foo.html in it.

Link to comment
Share on other sites

This isn't that hard to do. Here is some code i use to do the same sort of thing...

 

$(document).ready(function() {
    $('.overlay').click(function() {
        // If a dialog is already open, close it.
        if ($('.dialog').length > 0) {
            $('.dialog').dialog('close');
        }
        // Get the name of the file used to fill
        // the dialog with content.
        var file = $(this).attr('name');
        // Create the empty div to store the dialog content in.
        var $dialog = $('<div class="dialog"></div>')
        // Load the content into the div.
        .load(file)
        // Initialize the dialog.
.dialog({
            autoOpen: false,
            resizable: false,
            height: 472,
            zIndex: 40000,
            //modal: true,
            width: 792,
        });
        // Open the new dialog.
        $dialog.dialog('open');
    });
});

 

As you can see, this code takes a filename loaded from the name attribute of the link you've clicked on and loads it into the dialog's content.

 

So, to work this you would have links like....

 

<a href="#" name="foo.html" class="overlay">foo</a>
<a href="#" name="bar.html" class="overlay">bar</a>

 

Clicking 'foo' would open a dialog with the contents of foo.html in it.

 

Hi, that is exactly what I want to do.

 

I have never used jquery before, do you have a link to get the full script to make this work? Or could you explain.

 

Thanks

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.