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 Wanet Telecoms Ltd 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 Beal91

  1. Beal91

    Disable IE navigation sounds programmatically

    If you're using the JavaScript onclick event from your <A> elements, just add a return false; statement at the end of the event handler. <a href="#" onclick="doSomething()">GO</a> would become <a href="#" onclick="doSomething();return false;">GO</a>. If you're using traditional links, you may...

Part and Inventory Search

Back
Top