i am trying to position my jQuery dialogue modal relative to the to the link that reveals the module. What I ideally like is to open the module directly centered underneath the link.

Below is my code, how would I change this to get the desired effect?

$("#tooltest").bind("click", function (e) {
  $("#LightboxTool").dialog({ 
    show: 'fade',
    hide: 'fade',
    modal: false,
    width: 320,
    minHeight: 180  
  });
  return false;
});
link|improve this question

59% accept rate
Adapted answer to blog post: jensbits.com/2011/06/19/… Thanks for the question. – jk. Jun 9 '11 at 17:01
feedback

1 Answer

keithnorm has answered this greatly in a jQuery forum as follows:

$('#dialog').dialog({
    position: { 
        my: 'top',
        at: 'top',
        of: $('#some_div')
    }
});

An also this question looks a like a dup of this.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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