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;
});
 
     
     
    