im not a prototype or ajax guru so if this isnt efficient or good
enough for you , then you may have to wait for a better reply, but
since im waiting for help myself i'll do my best.

one way you could do this is a simple onkeyup event on the input box,
something like

function search(e) {

if(e.keyCode == 32)
  {

  YOUR SEARCH CODE GOES HERE AS SPACE WAS PRESSED

  }

}


then on the input box itself just add

onkeyup="search(event);"

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Prototype & script.aculo.us" group.
To post to this group, send email to prototype-scriptaculous@googlegroups.com
To unsubscribe from this group, send email to 
prototype-scriptaculous+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/prototype-scriptaculous?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to