Hi,
I know it's possible to add actions for elements that are not in DOM yet, like
$(element).live('event',function() {
//code here
});
Is there any way to execute the code without the event, or give it an event like 'exists' ? Like, when object is added, the function executes automatically, so i don't have to click or mouseover the element or something like that.
Thanks