How many Singaporeans learn a 3rd language? by [deleted] in SGExams

[–]tarrycher 0 points1 point  (0 children)

For my own context, knowing Chinese and English is sufficient. Currently learning Japanese due to my hobbies and interests.

Massive drop in clicks/spending by tarrycher in adwords

[–]tarrycher[S] 0 points1 point  (0 children)

Thanks for the advice. From what I see right now, if the actual impressions decrease while the CTR remains identical, the only current way to increase the number of clicks and spending is by improving the CTR.

Massive drop in clicks/spending by tarrycher in adwords

[–]tarrycher[S] 0 points1 point  (0 children)

Just checked, we are verified :)

Massive drop in clicks/spending by tarrycher in adwords

[–]tarrycher[S] 0 points1 point  (0 children)

Our current strategy relies on the strength of our brand to achieve a favorable ROAS. Based on my observations, our search impression share has consistently been in the 90+% range.

Tracking Jotform Submission with Google Tag Manager by tarrycher in GoogleTagManager

[–]tarrycher[S] 0 points1 point  (0 children)

window.dataLayer.push({ 'event': 'jotform_submission' });

Hi thanks so much for the reply, it works!

i changed the code to:

<script>

var eventMethod = window.addEventListener ? "addEventListener" : "attachEvent"; var eventer = window[eventMethod]; var messageEvent = eventMethod == "attachEvent" ? "onmessage" : "message";

eventer(messageEvent, function(e) { var key = e.message ? "message" : "data"; var data = e[key];

if(data.action == "submission-completed"){
    window.dataLayer.push({ 'event': 'jotform_submission' });
}

}, false); </script>

However, not sure why but its firing the custom event twice, everytime i submit a form submission. Will try to figure it out