Hello,
I am a very new developer and I’ve tried searching this but haven’t had any luck. I’m trying to redirect the follow button to http://twitter.com/username instead of it opening a pop-up window. I added a click handler and it redirects but it still pops up that log-in window as well. I was just wondering if anyone has tried to do a similar trick?
function clickEventToAnalytics (intentEvent) {
if (!intentEvent) return;
var iframewindow = frames[1];
iframewindow.close();
window.location.href=“https://twitter.com/ElectionsSask”;
}