Skip to content

Instantly share code, notes, and snippets.

View fbonawiede's full-sized avatar

Farid Bonawiede fbonawiede

  • Stockholm
View GitHub Profile
@fbonawiede
fbonawiede / hubspot-meetings-conversion-tracking.js
Last active March 15, 2022 22:06 — forked from thmsobrmlr/hubspot-meetings-conversion-tracking.js
Track conversions of Hubspot Meetings (iframe)
function isHubspotUrl(url) {
var hubspotUrls = [
'https://local.hubspot.com',
'https://app.hubspotqa.com',
'https://app.hubspot.com',
'https://meetings.hubspot.com'
];
return hubspotUrls.indexOf(url) > -1
}