Skip to content

Instantly share code, notes, and snippets.

View yEzas's full-sized avatar

yEzas yEzas

  • Lithuania
View GitHub Profile
@arafathusayn
arafathusayn / hidetdo.js
Last active February 21, 2021 08:47
Hide Tidio Chat Branding (Old Theme). For new theme, check: https://gist.github.com/arafathusayn/663217f383b02017d20be6ba465959d4
function hideTdo() {
var timer = null;
var target = document.querySelector('#tidio-chat iframe');
if(!target) {
if(timer !== null) {
clearTimeout(timer);
}
timer = setTimeout(hideTdo, 500);
return;
} else {