
08-09-2007, 04:10 AM
|
|
|
Join Date: Feb 2006
Posts: 138
Благодарил(а): 0 раз(а)
Поблагодарили:
0 раз(а) в 0 сообщениях
|
|
Quote:
Originally Posted by coderphp
of course it could
How?
do steps 1 and 3
then
add the onclick event to the search field:
Code:
onkeyup="showHint(this.value)"
then, after the field, add the hidden div where the search results appears:
Code:
<div id="search_results" class="smallfont" style="position:absolute; border: 2px solid orange; color:blue; background-color: white; width: 300px; padding: 8px; display:none">
<div align="left"><a href="#" onClick="overlayclose('search_results'); return false">x</a></div>
</div>
|
Thank you much!
|