Search bar (help)

A Place For Programmers Of All Levels To Discuss Programming & Web Building.

Moderator: Community Moderator

Post Reply
joselm82
Corporal
Corporal
Posts: 49
Joined: 09 Oct 2009, 21:17
Has thanked: 4 times

Search bar (help)

Post by joselm82 »

Here is what i got please if you can tell me why its not working it would help me out alot. what im trying to make is something like the unofficial site bar by blr419..

Code: Select all

<SCRIPT type="text/javascript">
              function searchSel() {
                  var input = document.getElementById('realtxt').value.toLowerCase();
                  var output = document.getElementById('realitems').options;
                  for (var i = 0; i < output.length; i++) {
                      if (output[i].value.indexOf(input) == 0) {
                          output[i].selected = true;
                      }
                      if (document.forms[0].realtxt.value == '') {
                          output[0].selected = true;
                      }
                  }
              }
</SCRIPT></HEAD><BODY>
<FORM>
Search <input type="text" id="realtxt" onkeyup="searchSel()" size="20">
<SELECT id="realitems">
<OPTION value="">Select...
<OPTION value="http://google.com">Google
<OPTION value="http://yahoo.com">Yahoo
<OPTION value="http://msn.com">MSN
</SELECT>
<input type="button"
     onClick="location=document.jump.menu.options[document.jump.menu.selectedIndex].value;"
     value="GO">
</p>
</form>
User avatar
ChattChitto
Site Admin
Site Admin
Posts: 13868
Joined: 20 Aug 2009, 06:20
Status: The Don
Location: The Fourth Dimension
Has thanked: 11 times
Been thanked: 38 times
Contact:

Re: Search bar (help)

Post by ChattChitto »

Displayed on normal HTML right?
To err is human, to forgive is divine
We can't all be heroes, because somebody has to sit on the curb and applaud when they go by.

ChattChitto RG - Apps Upload List: http://chattchitto.com/forum/viewtopic.php?f=29&t=104
ChattChitto RG - Movies Upload List: http://chattchitto.com/forum/viewtopic.php?f=29&t=5092
ChattChitto RG - Music Upload List: http://chattchitto.com/forum/viewtopic.php?f=29&t=34836
Post Reply

Return to “Programming/Web Building Chat & Support”