jquery ui dialog open multiple dialog boxes using the same class on the button and the content div
Posted
by
MichaelAntoni
on Stack Overflow
See other posts from Stack Overflow
or by MichaelAntoni
Published on 2010-12-23T12:49:16Z
Indexed on
2010/12/23
12:54 UTC
Read the original article
Hit count: 199
Hello there, i want to open multiple dialog boxes by using the same class on both the button and the content div. The below works but only for the first time.
jQuery('.helpDialog').hide();
jQuery('.helpButton').click(function() {
jQuery(this).next('.helpDialog').dialog({
autoOpen: true,
title: 'Help',
width: 500,
height: 300,
position: [180,10],
draggable: true,
resizable: false,
modal: false
});
return false;
});
we know the reason for this http://blog.nemikor.com/2009/04/08/basic-usage-of-the-jquery-ui-dialog/ "the second call is ignored because the dialog has already been instantiated on that element."
But when i fix that problem by trying the code below, the dialog box no longer opens. Can anyone help? Thanks in advance
jQuery('.helpDialog').hide();
jQuery(function() {
jQuery('.helpDialog').dialog({
autoOpen: false,
modal: true,
title: 'Info',
width: 600,
height: 400,
position: [200,0],
draggable: false
});
});
jQuery('.helpButton').click(function() {
jQuery(this).next('.helpDialog').dialog('open');
return false;
});
© Stack Overflow or respective owner