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;








2















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)










share|improve this question
























  • 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

















2















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)










share|improve this question
























  • 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













2












2








2








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)










share|improve this question














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






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Mar 27 at 15:10









maxpelicmaxpelic

13111 bronze badges




13111 bronze badges















  • 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
















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












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
);



);













draft saved

draft discarded


















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.



















draft saved

draft discarded
















































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.




draft saved


draft discarded














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





















































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







Popular posts from this blog

Kamusi Yaliyomo Aina za kamusi | Muundo wa kamusi | Faida za kamusi | Dhima ya picha katika kamusi | Marejeo | Tazama pia | Viungo vya nje | UrambazajiKuhusu kamusiGo-SwahiliWiki-KamusiKamusi ya Kiswahili na Kiingerezakuihariri na kuongeza habari

SQL error code 1064 with creating Laravel foreign keysForeign key constraints: When to use ON UPDATE and ON DELETEDropping column with foreign key Laravel error: General error: 1025 Error on renameLaravel SQL Can't create tableLaravel Migration foreign key errorLaravel php artisan migrate:refresh giving a syntax errorSQLSTATE[42S01]: Base table or view already exists or Base table or view already exists: 1050 Tableerror in migrating laravel file to xampp serverSyntax error or access violation: 1064:syntax to use near 'unsigned not null, modelName varchar(191) not null, title varchar(191) not nLaravel cannot create new table field in mysqlLaravel 5.7:Last migration creates table but is not registered in the migration table

은진 송씨 목차 역사 본관 분파 인물 조선 왕실과의 인척 관계 집성촌 항렬자 인구 같이 보기 각주 둘러보기 메뉴은진 송씨세종실록 149권, 지리지 충청도 공주목 은진현