Alegion - Fix JLL Property Brochure Link

Turns real estate broker jllproperty.us's 'Property Brochure' links into standard right-clickable links.

  1. // ==UserScript==
  2. // @name Alegion - Fix JLL Property Brochure Link
  3. // @description Turns real estate broker jllproperty.us's 'Property Brochure' links into standard right-clickable links.
  4. // @version 1.1
  5. // @author Kerek
  6. // @namespace Kerek
  7. // @include http://www.jllproperty.us/*
  8. // @require http://code.jquery.com/jquery-latest.min.js
  9. // @grant GM_log
  10. // ==/UserScript==
  11.  
  12. var link = $('a:contains("Property Brochure")');
  13. var correct_link = link[0].getAttribute('onclick').split('"')[1];
  14. link.eq(0).prop('onclick',null);
  15. link[0].href = correct_link;
  16. link.eq(0).removeAttr('onclick');

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址