gaAddons - Google Analytics Addons by Stéphane Hamel
Track the last field where the cursor was so we can find useful information such as the field impacting form abandonment the most, wether people are leaving the form without filling any fields, and form completion rates..
The current release supports only one form on a page. By default, only the first form with a NAME attribute and more than minFields input fieldswill be tracked (excluding hidden fields and buttons). If there are multiple forms on a page use the formList option to specify which one should be tracked. A future release might support multiple forms on a page - depending on the level of interest.
_gaq.push(['_formAnalysis', {
onBounce: true, // optional boolean
minFields: 3, // optional integer
formList: null, // optional string
selector: 'form' // optional jQuery selector
}]);
This call can be used only once per page