Difference between revisions of "Template:Dropdown"

From UMaine SECS Numerical Modeling Laboratory
Jump to: navigation, search
Line 4: Line 4:
 
</div>
 
</div>
  
<select>
+
<htmlet nocache="yes">dropdown</htmlet>
  <option value="100">100</option>
 
  <option value="1000">1000</option>
 
</select>
 
 
 
<htmltag tagname="select">
 
  <htmltag tagname="option" value="100">100</htmltag>
 
  <htmltag tagname="option" value="1000">1000</htmltag>
 
</htmltag>
 
 
 
<div id='displayText'>
 
</div>
 
 
 
<htmltag tagname="input" type="submit">
 
 
 
 
 
  <htmltag tagname="option" value="Chrome">
 
  <htmltag tagname="option" value="Firefox">
 
  <htmltag tagname="option" value="Opera">
 
  <htmltag tagname="option" value="Safari">
 
<htmltag tagname="form" action=""></htmltag>
 
  
 
<form action="/action_page.php">
 
<form action="/action_page.php">

Revision as of 21:43, 20 February 2019

Click the button to create an INPUT field, a DATALIST element and an OPTION element.

Dropdown

<form action="/action_page.php">

 <input list="browsers" name="browser">
 <datalist id="browsers">
   <option value="Internet Explorer">
   <option value="Firefox">
   <option value="Chrome">
   <option value="Opera">
   <option value="Safari">
 </datalist>
 <input type="submit">

</form>