Skip to content

Instantly share code, notes, and snippets.

@pizzimenti
Created February 29, 2016 23:41
Show Gist options
  • Select an option

  • Save pizzimenti/57ec2db322d88b6346a2 to your computer and use it in GitHub Desktop.

Select an option

Save pizzimenti/57ec2db322d88b6346a2 to your computer and use it in GitHub Desktop.
Select form that autosubmits on change
<form action="/" method="post">
<div class="form-group">
<select id="stylist" name="stylist" class="form-control" type="text" onchange="this.form.submit();">
<option selected="true" disabled="disabled">Choose a Stylist</option>
#foreach($stylist in $stylists)
<option value="$stylist.getID()">$stylist.getName()</option>
#end
</select>
</div>
</form>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment