Skip to content

Instantly share code, notes, and snippets.

View yEzas's full-sized avatar

yEzas yEzas

  • Lithuania
View GitHub Profile
@yEzas
yEzas / hidetdo.js
Last active August 5, 2019 10:43 — forked from arafathusayn/hidetdo.js
Hide Tidio Chat Branding
function hideTdo() {
var timer = null;
var target = document.querySelectorAll('#tidio-chat iframe')[0];
if(!target || typeof target === 'undefined') {
if(timer !== null) {
clearTimeout(timer);
}
timer = setTimeout(hideTdo, 500);
return;
} else {