Skip to content

Instantly share code, notes, and snippets.

@opi
Created June 25, 2013 08:28
Show Gist options
  • Save opi/5856896 to your computer and use it in GitHub Desktop.
Save opi/5856896 to your computer and use it in GitHub Desktop.
Drupal: Add Google Analytics event to a form
<?php
function your_module_form($form, &$form_state) {
// Your form definition
// Google Analytics event
$form['#attached'] = array(
'js' => array(
'(function($){
$("#your-form-id").submit(function(e){
if (typeof _gaq !== "undefined") {
_gaq.push(["_trackEvent", "Category", "Action", "Value"]);
}
})
})(jQuery);' => array('type' => 'inline')
)
);
return $form;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment