AMP analytics tracking not sending eventAMP analytics form -submission trackingEvent binding on dynamically created elements?Tracking successful form completion for POST content in Google AnalyticsTrack event in google analytics upon clicking form submitUse Google Analytics to track Google Form submissionsUniversal Analytics: How to track conversions when URL doesn't change?Event tracking form submissions - why do i have to click twice?How to track conversion on a form without confirmation page?Track event in analytics - Ajax FormGoogle tag manager events not appearing in google analyticsHow to implement amp-analytics view tracker inside a mustache template after submitting a form
Does Swashbuckler's Fancy Footwork apply if the attack was made with Booming Blade?
Sleeping solo in a double sleeping bag
Defense against attacks using dictionaries
Why we don't have vaccination against all diseases which are caused by microbes?
How to dismiss intrusive questions from a colleague with whom I don't work?
Most practical knots for hitching a line to an object while keeping the bitter end as tight as possible, without sag?
What is "Wayfinder's Guide to Eberron"?
How to create a summation symbol with a vertical bar?
Is "stainless" a bulk or a surface property of stainless steel?
Potential new partner angry about first collaboration - how to answer email to close up this encounter in a graceful manner
Does C++20 mandate source code being stored in files?
How can I support the recycling, but not the new production of aluminum?
!I!n!s!e!r!t! !n!b!e!t!w!e!e!n!
Ask for a paid taxi in order to arrive as early as possible for an interview within the city
Was 'help' pronounced starting with a vowel sound?
Are there any plans for handling people floating away during an EVA?
How to "know" if I have a passion?
Church Booleans
The economy of trapping
Injectivity radius of manifolds with boundary
How to look up identical column names in two dataframes and combine the matched columns
Why my earth simulation is slower than the reality?
Shouldn't the "credit score" prevent Americans from going deeper and deeper into personal debt?
Why are isotropic tensors not considered scalars?
AMP analytics tracking not sending event
AMP analytics form -submission trackingEvent binding on dynamically created elements?Tracking successful form completion for POST content in Google AnalyticsTrack event in google analytics upon clicking form submitUse Google Analytics to track Google Form submissionsUniversal Analytics: How to track conversions when URL doesn't change?Event tracking form submissions - why do i have to click twice?How to track conversion on a form without confirmation page?Track event in analytics - Ajax FormGoogle tag manager events not appearing in google analyticsHow to implement amp-analytics view tracker inside a mustache template after submitting a form
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
I'm trying to track a form submission with Google Analytics and AMP and it's not working - I looked at this question but there wasn't an answer, so I was hoping someone might be able to answer it now.
Here's a live example of what I'm trying to do: makethewebfree.com. As you can see in the code below, I tried to set up a trigger using the example I found on the amp website. It's tracking the initial pageview but nothing after that.
Here's my code:
<form method="post" action-xhr="..." target="_top">
<input type="email" name="email" placeholder="Email..." required><input id="signup" type="submit" value="Sign me up">
<div submit-success>
<template type="amp-mustache">
Success! We'll let you know when we do something
</template>
</div>
<div submit-error>
<template type="amp-mustache">
I guess there was an error - can you try again later?
</template>
</div>
</form>
And here's the AMP portion:
<amp-analytics type="googleanalytics">
<script type="application/json">
"vars":
"account": "..."
,
"triggers":
"default pageview":
"on": "visible",
"request": "pageview",
"vars":
"title": "Home Page"
,
"click on #signup trigger":
"on": "click",
"selector": "#signup",
"request": "event",
"vars":
"eventCategory": "subscribe",
"eventAction": "subscribe-clicked"
</script>
</amp-analytics>
I'm not getting any amp validation errors, so I'm not sure what the problem could be. I'm thinking maybe the amp form submission is preventing the trigger from being fired.
Any help is greatly appreciated!
(I filled in the parts that have ...
with the actual values, just trying to make a simpler example)
javascript html google-analytics analytics amp-html
add a comment |
I'm trying to track a form submission with Google Analytics and AMP and it's not working - I looked at this question but there wasn't an answer, so I was hoping someone might be able to answer it now.
Here's a live example of what I'm trying to do: makethewebfree.com. As you can see in the code below, I tried to set up a trigger using the example I found on the amp website. It's tracking the initial pageview but nothing after that.
Here's my code:
<form method="post" action-xhr="..." target="_top">
<input type="email" name="email" placeholder="Email..." required><input id="signup" type="submit" value="Sign me up">
<div submit-success>
<template type="amp-mustache">
Success! We'll let you know when we do something
</template>
</div>
<div submit-error>
<template type="amp-mustache">
I guess there was an error - can you try again later?
</template>
</div>
</form>
And here's the AMP portion:
<amp-analytics type="googleanalytics">
<script type="application/json">
"vars":
"account": "..."
,
"triggers":
"default pageview":
"on": "visible",
"request": "pageview",
"vars":
"title": "Home Page"
,
"click on #signup trigger":
"on": "click",
"selector": "#signup",
"request": "event",
"vars":
"eventCategory": "subscribe",
"eventAction": "subscribe-clicked"
</script>
</amp-analytics>
I'm not getting any amp validation errors, so I'm not sure what the problem could be. I'm thinking maybe the amp form submission is preventing the trigger from being fired.
Any help is greatly appreciated!
(I filled in the parts that have ...
with the actual values, just trying to make a simpler example)
javascript html google-analytics analytics amp-html
Note: I also tried the eventssubmit-success
andsubmit-error
and neither of those worked (I used the form element as the selector
– maxpelic
Mar 27 at 15:28
add a comment |
I'm trying to track a form submission with Google Analytics and AMP and it's not working - I looked at this question but there wasn't an answer, so I was hoping someone might be able to answer it now.
Here's a live example of what I'm trying to do: makethewebfree.com. As you can see in the code below, I tried to set up a trigger using the example I found on the amp website. It's tracking the initial pageview but nothing after that.
Here's my code:
<form method="post" action-xhr="..." target="_top">
<input type="email" name="email" placeholder="Email..." required><input id="signup" type="submit" value="Sign me up">
<div submit-success>
<template type="amp-mustache">
Success! We'll let you know when we do something
</template>
</div>
<div submit-error>
<template type="amp-mustache">
I guess there was an error - can you try again later?
</template>
</div>
</form>
And here's the AMP portion:
<amp-analytics type="googleanalytics">
<script type="application/json">
"vars":
"account": "..."
,
"triggers":
"default pageview":
"on": "visible",
"request": "pageview",
"vars":
"title": "Home Page"
,
"click on #signup trigger":
"on": "click",
"selector": "#signup",
"request": "event",
"vars":
"eventCategory": "subscribe",
"eventAction": "subscribe-clicked"
</script>
</amp-analytics>
I'm not getting any amp validation errors, so I'm not sure what the problem could be. I'm thinking maybe the amp form submission is preventing the trigger from being fired.
Any help is greatly appreciated!
(I filled in the parts that have ...
with the actual values, just trying to make a simpler example)
javascript html google-analytics analytics amp-html
I'm trying to track a form submission with Google Analytics and AMP and it's not working - I looked at this question but there wasn't an answer, so I was hoping someone might be able to answer it now.
Here's a live example of what I'm trying to do: makethewebfree.com. As you can see in the code below, I tried to set up a trigger using the example I found on the amp website. It's tracking the initial pageview but nothing after that.
Here's my code:
<form method="post" action-xhr="..." target="_top">
<input type="email" name="email" placeholder="Email..." required><input id="signup" type="submit" value="Sign me up">
<div submit-success>
<template type="amp-mustache">
Success! We'll let you know when we do something
</template>
</div>
<div submit-error>
<template type="amp-mustache">
I guess there was an error - can you try again later?
</template>
</div>
</form>
And here's the AMP portion:
<amp-analytics type="googleanalytics">
<script type="application/json">
"vars":
"account": "..."
,
"triggers":
"default pageview":
"on": "visible",
"request": "pageview",
"vars":
"title": "Home Page"
,
"click on #signup trigger":
"on": "click",
"selector": "#signup",
"request": "event",
"vars":
"eventCategory": "subscribe",
"eventAction": "subscribe-clicked"
</script>
</amp-analytics>
I'm not getting any amp validation errors, so I'm not sure what the problem could be. I'm thinking maybe the amp form submission is preventing the trigger from being fired.
Any help is greatly appreciated!
(I filled in the parts that have ...
with the actual values, just trying to make a simpler example)
javascript html google-analytics analytics amp-html
javascript html google-analytics analytics amp-html
asked Mar 27 at 15:10
maxpelicmaxpelic
13111 bronze badges
13111 bronze badges
Note: I also tried the eventssubmit-success
andsubmit-error
and neither of those worked (I used the form element as the selector
– maxpelic
Mar 27 at 15:28
add a comment |
Note: I also tried the eventssubmit-success
andsubmit-error
and neither of those worked (I used the form element as the selector
– maxpelic
Mar 27 at 15:28
Note: I also tried the events
submit-success
and submit-error
and neither of those worked (I used the form element as the selector– maxpelic
Mar 27 at 15:28
Note: I also tried the events
submit-success
and submit-error
and neither of those worked (I used the form element as the selector– maxpelic
Mar 27 at 15:28
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55380550%2famp-analytics-tracking-not-sending-event%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.
Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55380550%2famp-analytics-tracking-not-sending-event%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Note: I also tried the events
submit-success
andsubmit-error
and neither of those worked (I used the form element as the selector– maxpelic
Mar 27 at 15:28