$("#google-login").on('click', function(){
var last_click = this.getAttribute ('data-click');
var this_click = new Date().getTime();
if (typeof last_click !== 'undefined') {
if (this_click >= last_click && ((this_click - last_click) < 2000)) {
return false;
}
}
this.setAttribute ('data-click', this_click);
return true;
});
Please sign in to your OneAll account to ask a new question or to contribute to the discussions.
Please click on the link below to connect to the forum with your OneAll account.
Answers
I appreciate your help!
Bob