[jQuery] livequery click event and no click event

[jQuery] livequery click event and no click event


I am using livequery on my page as I have ajax content loading into a
div, and each time this happens, livequery is used to rewrite some
links for the ajax content:
$("#calScrollTitle a").livequery(function() {
//my script for rewriting the links goes here, removed for
this post
});
Now, I am also needing to add a livequery click event to each of those
same anchor tags, but it seems there is some conflict here when trying
something like:
$("#calScrollTitle a").livequery("click", function() {
//my click events script
});
How can I get both of these working, the first which will run a
specific script each time it loads in my anchor tags, and ALSO, add
click events to them?