Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // ==UserScript==
- // @name Business Locator
- // @author mmmturkeybacon + Scarlett Turk + Cristo + ScottB
- // @description Turns company name into a Google search link.
- // @include *
- // @require http://code.jquery.com/jquery-latest.min.js
- // @version 0.1
- // @grant none
- // ==/UserScript==
- { // Tyler Yamasaki Google search
- var company_node = $("p:contains('Business Name:')").children('strong');
- var city_text = $("p:contains('City:')").children('strong').text().trim();
- var state_text = $("p:contains('State:')").children('strong').text().trim();
- var company_text = company_node.text().trim().replace("&", "%26");
- var google_URL = "http://maps.google.com/maps?q=" + company_text + " " + city_text + " " + state_text;
- google_URL = google_URL.replace("Business Name: ","").replace("City: ","").replace("State: ","").replace(/[" "]/g, "+");
- company_node.html('<a href="' + google_URL + '" target="_blank">' + company_text + '</a>');
- }
Advertisement
Add Comment
Please, Sign In to add comment