How to disable chat icon present website

Hi Team,

While entering the webiste chat icons is distrubing to move to next page. so that i want to disable the icons…

i am checking to disable the chat icons present in the website. like this
image

This is chat icon code get it in inspect the webpage…

Blockquote

  </span>
</div>

How to pass the above code in jquery or else… ?

Thanks
Shyam

Hey @Shyam_Pragash!! Amazing question!!! Lets go!

You can easily inject JS code into a page! Let’s see an example very similar to what you are looking for!
I used the site Gupy | Impulsione o seu RH who use this icon!


image

In my case this element has the ID

hubspot-messages-iframe-container

Pay attention to the selector, because I took a selector from a larger scope than the element I want to delete.

  • The function:
"function myFunction() {
  var x = document.getElementById('hubspot-messages-iframe-container');
  x.remove();
}"

The result!!

Hope it helps!!

The .xaml.
Main.xaml (10.8 KB)

Hi @gabrielribas4

Thanks Bro…

Its working fine…

Thanks
Shyam

1 Like

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.