Hi, how I could I event handlers ?
for example when I see this code
<a onclick='callMyFunc();" ... />
I understand what callMyFunc - i'ts event handler'

but when I set event handler like this (jQuery)
$(document).ready(function(){
                        $('a').click(
                                function(event) {
                                   $(this).hide("slow");
                                   event.preventDefault();
                                }
                        )
                });

How I could find this event handler with help FireBug.. especially if
html and js source not 2 rows ;)

Thanks.

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Firebug" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/firebug?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to