As title says, is there any issue?
for example, i use them this way:
$("abbr.timeago").livequery(function() {
$(this).timeago();
});
$("#btnPhoto").livequery(function() {
createUploader();
});
$("#inputTagline").livequery(function () {
$(this).charCount();
});;
EDIT
My web page alone uses up 100k memory.
Provided page contents are generated by ajax, does anyone of you know how to solve the .timeago() problem? I really appreciate that. Thanks
UPDATE Now i can get rid of livequery by @Linas answe below. Any better answers are welcome!