It has come to my attention that you faggots need to learn to comment your code. I'm looking at you, C fags, with your unreadable declarations.
char (*(*imafaggot)[])();
Tell me what this is and you win a prize.
Programs should be written for people to read, and only incidentally for machines to execute. - SICP 101
Name:
Anonymous2010-06-15 17:23
I thought you documentation nazis might like some documentation so here you have some documentation. That enough documentation for you?
Please do not think about anal intercourse while reading this documentation. Thank you.
addEventListener
Registers an event listener, depending on the useCapture parameter, on the capture phase of the DOM event flow or its target and bubbling phases.
Parameters
type of type DOMString
Specifies the Event.type associated with the event for which the user is registering.
listener of type EventListener
The listener parameter takes an object implemented by the user which implements the EventListener interface and contains the method to be called when the event occurs.
useCapture of type boolean
If true, useCapture indicates that the user wishes to add the event listener for the capture phase and target only, i.e. this event listener will not be triggered during the bubbling phase. If false, the event listener must only be triggered during the target and bubbling phases.