Skip to content

Instantly share code, notes, and snippets.

View camielpeeters's full-sized avatar
:atom:
Painting codes all over the place

Camiel camielpeeters

:atom:
Painting codes all over the place
View GitHub Profile
@camielpeeters
camielpeeters / hidetdo.js
Created August 5, 2018 15:30 — 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 {