I want to disable a script (mixpanel tracking software) for users from two unique IP addresses that are my AWS servers - is there a javascript function to do this automatically from the front-end?
I'm looking for something like this:
if (!(ipaddress1 || ipaddress2)){
//run the script
}