Skip to content

Instantly share code, notes, and snippets.

View lmosele's full-sized avatar
🍉

Lucas Mosele lmosele

🍉
View GitHub Profile
@lmosele
lmosele / gist:72936ab99533831dda4038395bd32fd3
Created February 2, 2017 20:09
Hash URL tracking in Google Analytics attempt
// This sort of works, but not really.
function sendAnalytics() {
var pageName = location.hash.replace('#', '');
ga('send', 'screenview', {
'page': location.pathname + location.search + location.hash,
'screenName': 'member ' + pageName + ' page'
});
}
window.addEventListener('hashchange', function() {
@lmosele
lmosele / Credit Card Form - Daily UI #2.markdown
Created May 27, 2016 15:20
Credit Card Form - Daily UI #2