So I have a an ajax table of results that have tags links that allows you to edit the entries.
Currently the links look like this <a href="edit.php?id=$id">Edit Entry</a>
What I want to do is open edit.php in a lightbox and send the id so as it is ajax I have to launch the lightbox using the live() function/
$("a.edit").live('click',function () {
//fancy box code goes here, open edit.php?id=$id
});
thanks