gtag 로 이벤트 남기기 자동화

$(function(evt){
$(document).on("click","button",function(evt){
// console.log(evt);
gtag('event', 'button-click', {'event_category': this.innerText,'event_label': this.innerText});
})
$(document).on("change","select",function(evt){
// console.log(evt);
gtag('event', 'select-change', {'event_category': this.title,'event_label': $(this).find('option:selected').prop('label')});
})
$(document).on("change","input",function(evt){
// console.log(evt);
gtag('event', 'input-change', {'event_category': this.title,'event_label': this.value});
})
$(document).on("click","a:not([data-toggle])",function(evt){
// console.log(evt);
gtag('event', 'a-click', {'event_category': this.innerText,'event_label': this.href});
})
$(document).on("click","a[data-toggle]",function(evt){
// console.log(evt);
gtag('event', 'a-tab-click', {'event_category': this.innerText,'event_label': this.href});
})
$(document).on("submit","form",function(evt){
// console.log(evt);
gtag('event', 'form-submit', {'event_category': this.name,'event_label': $(this).serialize()});
})
// 
})
댓글
  • No Nickname
    No Comment
  • 권한이 없습니다.
    {{m_row.m_nick}}
    -
제목 작성자 날짜
공대여자
공대여자
mins01
공대여자
공대여자
#ie
공대여자
공대여자
공대여자
공대여자
공대여자
공대여자
공대여자
공대여자
#og
공대여자
공대여자
공대여자
공대여자
공대여자