30 lines
527 B
HTML
30 lines
527 B
HTML
|
<input type="text" id="filter" autocomplete="off" onkeyup="filter()" />
|
||
|
<br />
|
||
|
<input
|
||
|
type="radio"
|
||
|
id="searchResult"
|
||
|
name="search"
|
||
|
autocomplete="off"
|
||
|
value="result"
|
||
|
checked
|
||
|
/>
|
||
|
<label for="searchResult">Result</label>
|
||
|
|
||
|
<input
|
||
|
type="radio"
|
||
|
id="searchIngredients"
|
||
|
autocomplete="off"
|
||
|
value="ingredients"
|
||
|
name="search"
|
||
|
/>
|
||
|
<label for="searchIngredients">Ingredients</label>
|
||
|
|
||
|
<input
|
||
|
type="radio"
|
||
|
id="searchAbilities"
|
||
|
autocomplete="off"
|
||
|
value="abilities"
|
||
|
name="search"
|
||
|
/>
|
||
|
<label for="searchAbilities">Abilities</label>
|