Skip to content

Instantly share code, notes, and snippets.

@sbward
Created January 28, 2014 18:46
Show Gist options
  • Save sbward/8673630 to your computer and use it in GitHub Desktop.
Save sbward/8673630 to your computer and use it in GitHub Desktop.
// Segment.io tracking: which modules were selected?
var props = {};
var $chkboxes = $('.module-option input[type=checkbox]');
$chkboxes.each(function() {
props[$(this).attr('name')] = $(this).attr('checked');
});
analytics.trackForm(form, 'Build Created', props);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment