Suggestion.

Suggestion.


I have been having to rewrite functions as append, html, before, and
so on. with a function callback.
And my suggestion is that give the html manipulation functions a
callback option.
why? I have found it easier to bind events this way. Mainly because
the browser waits for the dom injection and THEN do the event binding.
I have tried live. but that only works if you have data injected
before you start.
Others hacks that work is animating things that isnt there for 100ms
and then do the event binding as a function callback. But this is not
a clean way of doing it in my opinion.