This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
setInterval(function(){ | |
var iFrameDOM = jQuery("iframe").contents(); | |
var year = new Date().getFullYear(); | |
iFrameDOM.find(".tawk-branding").attr('href',"https://webit.pk").html(' Chat <img src="https://embed.tawk.to/_s/v4/assets/images/power.svg" style="margin: 0px 2px; display: inline-block; vertical-align: middle;"> by <span class="tawk-text-bold"> WebIT.pk - Domains & Hostings</span>'); | |
}, 100); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 { |