<div id="largerview"><a href="/myimage.jpg">click for larger view</a></div>
I want to get rid of the link and call the lightbox script automatically at the conclusion of an ajax transaction. I have the following javascript function in my ajax code:
function operationcomplete()
{
if (xmlhttp.readyState==4 || xmlhttp.readyState=="complete")
{
//alert('Your transaction has been successful');
---> call to lightbox <---
}
}
How do I call the jquery function from the above javascript.
Bookmarks