AlkanFan

Untitled

May 8th, 2014
223
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.99 KB | None | 0 0
  1. // ==UserScript==
  2. // @name Business Locator
  3. // @author mmmturkeybacon + Scarlett Turk + Cristo + ScottB
  4. // @description Turns company name into a Google search link.
  5. // @include *
  6. // @require http://code.jquery.com/jquery-latest.min.js
  7. // @version 0.1
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11.  
  12. { // Tyler Yamasaki Google search
  13. var company_node = $("p:contains('Business Name:')").children('strong');
  14. var city_text = $("p:contains('City:')").children('strong').text().trim();
  15. var state_text = $("p:contains('State:')").children('strong').text().trim();
  16.  
  17. var company_text = company_node.text().trim().replace("&", "%26");
  18. var google_URL = "http://maps.google.com/maps?q=" + company_text + " " + city_text + " " + state_text;
  19. google_URL = google_URL.replace("Business Name: ","").replace("City: ","").replace("State: ","").replace(/[" "]/g, "+");
  20. company_node.html('<a href="' + google_URL + '" target="_blank">' + company_text + '</a>');
  21. }
Advertisement
Add Comment
Please, Sign In to add comment