Here is the complete list of events that can be sent to Netminers tracking backend. Each event type is described and examples of each is given. The list consists of:
- Page View
- Download
- Flash
- Field Change
- Exit Link
- Other
- Survey Answer
A command is used to post an event to Netminers. Each of these commands has the same syntactically structure. This structure is described next in the Usage definition section.
All commands are pushed to an array, and handled by a scheduler running in a thread. The queue is a javascript array with each item containing a command name and arguments.
// Command push syntax $netminers.push( [ [command], [command], [command], ... ] ); // Where a command is defined as command ::= name[, argument[, argument][, ...]]] // Command 'name' is defined name ::= string // And where argument is defined as any valid javascript type. The concrete argument used // in a command is specific to the commands demands. Read more in the command reference below. argument ::= Object