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 TouchToneTommy 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 hardingd

  1. hardingd

    Create accent insensitive search

    Hey guys, Thanks for the response. I think I'm going to have to use a couple of arrays for this as damber suggested. I don't think it will be that inefficient becuase it will only take two or three key presses to limit the result set to what the user wants. Much appreciated. HardingD.
  2. hardingd

    Using Imported Stylesheets

    I did some googling and found the following code: function getcss( selector, property ) { var i, r, s=document.styleSheets && document.styleSheets[0]; if(s) { r = s.rules ? s.rules : s.cssRules; if(r) { i = r.length; while (i--) { if(r[i].selectorText.toLowerCase() === selector.toLowerCase()) {...
  3. hardingd

    Create accent insensitive search

    Hi everyone, I would firstly like to say hello to everyone as this is my first time at tek-tips.com. I'm making a dynamic popup of user names as the user is entering them. I was wondering if anyone had any tips for making an accent insensitive search using javascript. Here's my setup: for(i =...

Part and Inventory Search

Back
Top