How to remove external js cache?

Asked

Viewed 69 times

0

I added on a website an external lib that called via inclusion of script, ie a js that made the communication with the services that this company offered. After this inclusion they would add the information on the page.

So far so good, but now we terminate the contract and I removed the inclusion of this external js of them, but I do not know how it is still loaded on the site is like a cache but it does not make sense being that I removed the inclusion of this script, they would know why and how to solve it?

1 answer

0

Browse the site and check the URL of the script. Try to access this URL alone from your browser. You will find that one of two things is occurring:

  • The script is hosted on a server that you control. You can then remove the script from the address you are at, or condition your access in some way (i.e.: through an API key or authentication token);

  • The script is hosted on a server that you do not control. It is trivial to copy a script from any page. Your client may have made a copy of your script.

Browser other questions tagged

You are not signed in. Login or sign up in order to post.