Hi all,
I have the following jquery function for some links
$(".clickable").click(function(event){
// load dialog content...
$("#dialog").dialog();
return false;
});
What i'd like to do is have JQuery's UI dialog display near the clicked link. Is there any way to do this using just JQuery.
Thanks!