I want to fire a Facebook Conversion pixel when a user presses a button on a page. As per another answer here, I went ahead and adjusted the template so that it has the following line: u.ev = {"view" : 1, "link": 1}; Now that I try to push the event, I don't think the tag is firing. I added a debugger statement at the beginning of the tag template so that I would know if it fired. When I click the button, the console doesn't pause. The button has the following attribute: onclick="utag.view({ga_category:"something", ga_action: "something else"}); The "something" and "something else" match up to the load rule in TiQ. What steps can I do to test that it is working? And, am I implementing this properly?
... View more