Do you know a JS library for DOM events simulation? I know that this operation can be done but i can\'t find any library to do it.
UPDATE: I try to
All of the major javascript libraries have the ability to trigger events. To add to the chorus of examples, in jquery you do it with: $("target_element").trigger("an_event");
$("target_element").trigger("an_event");