Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save antonioortegajr/49474b6bebfd595acf1c to your computer and use it in GitHub Desktop.
Save antonioortegajr/49474b6bebfd595acf1c to your computer and use it in GitHub Desktop.
auto append agent ID on IDX Broker bio page
// script will pull agent ID from bio page url and auto append to cookie lead to that agent
var local = location.href;
var pathArray = window.location.pathname.split( '/' );
var append = '?agentHeaderID=';
var appendID = pathArray[3];
var capture = local+append+appendID;
window.location.assign(capture);
@antonioortegajr
Copy link
Author

scripts are unsupported by IDX Broker. DO NOT contact IDX Broker for support on any scripting found here

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment