Skip to content

Instantly share code, notes, and snippets.

@erik4github
erik4github / hubspot-gtm-gdpr-cookie.js
Created May 30, 2018 16:49
HubSpot - Google Tag Manager - GDPR Opt-Out Listener.
@erik4github
erik4github / vanilla-serialize.js
Created April 13, 2018 19:31
Vanilla JavaScript equivalent of jQuery serialize
Array.from(new FormData(formElement), event =>
event.map(encodeURIComponent).join("=")
).join("&");
@erik4github
erik4github / drip.wistia-identify-audience.js
Last active April 5, 2018 17:02
Identify Wistia video play audience based on Drip email address
window._wq = window._wq || [];
window._wq.push({
id: "_all",
onReady: function(video) {
video.bind("play", function() {
_dcq.push([
"identify",
{
success: function(response) {
video.email(response.email);