Skip to content

Instantly share code, notes, and snippets.

View worksmarter's full-sized avatar

worksmarter worksmarter

  • UserveIT
  • Ohio, USA
View GitHub Profile
@worksmarter
worksmarter / hidetidio.js
Created March 18, 2020 16:40 — forked from arafathusayn/hidetidio.js
Hide TidioChat Branding (for new theme)
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 {