Tracking clicks on forms - #579
Closed
Bernardo Srulzon (bernardosrulzon) wants to merge 5 commits into
Closed
Conversation
|
Bernardo Srulzon (@bernardosrulzon) has signed the Individual Contributor License Agreement |
|
Hi Bernardo,
Form completion tracking is very useful. I think what you're after are the
on blur events. These events fire when users move away from a field.
They're the opposite of on focus.
At that point you should be able to detect if a selection or input was made
within a field.
Is that what you're looking for?
https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/onblur
…On Sun., 16 Apr. 2017, 4:50 am Snowplow CLA bot, ***@***.***> wrote:
@bernardosrulzon <https://github.com/bernardosrulzon> has signed the
Individual Contributor License Agreement
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub
<#579 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/ACQILJarY_3RM1k2rQm8YhkL3p96R4kJks5rwRFjgaJpZM4M-P_f>
.
|
Contributor
Author
|
Hey Rob! Thanks, that was exactly what I was looking for - Schema is here: snowplow/iglu-central#548 |
| * @todo make `nodeName` enum | ||
| */ | ||
| trackFormChange: function ( | ||
| trackFormFocusOrChange: function ( |
Contributor
There was a problem hiding this comment.
should we separate trackFormChange from trackFormFocus?
Contributor
Author
There was a problem hiding this comment.
I thought it would make sense to keep them together as they send exactly the same data. But feel free to edit this PR as you see fit - it was just a quick implementation to help us identify which forms needed more attention
Michael Hadam (mhadam)
pushed a commit
that referenced
this pull request
Nov 28, 2018
Michael Hadam (mhadam)
pushed a commit
that referenced
this pull request
Nov 28, 2018
Michael Hadam (mhadam)
pushed a commit
that referenced
this pull request
Nov 28, 2018
Michael Hadam (mhadam)
pushed a commit
that referenced
this pull request
Dec 4, 2018
Michael Hadam (mhadam)
pushed a commit
that referenced
this pull request
Jan 17, 2019
Paul Boocock (paulboocock)
pushed a commit
that referenced
this pull request
Dec 21, 2020
Paul Boocock (paulboocock)
pushed a commit
that referenced
this pull request
Dec 21, 2020
Paul Boocock (paulboocock)
pushed a commit
that referenced
this pull request
Dec 21, 2020
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
An interesting form tracking use case is analyzing if users are actually selecting something when they open a drop-down menu, or typing something when they click on a text field. This would allow us to see which fields are adding more friction to the conversion funnel - and hopefully lower it over time :)
Thoughts?