Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations John Tel on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by mcgiver

  1. mcgiver

    Checking if URL Exists

    Try this: // var loc = location.href.valueOf(); var comparison = false; // Checks for something in the URL sring // Could be a file name, domain, a variable etc. if (loc.indexOf("my unique string")!=-1){ comparison = false; } else { comparison = true; } if (comparison){ // In...

Part and Inventory Search

Back
Top