Skip to content

Instantly share code, notes, and snippets.

@Chrisedmo
Created July 31, 2012 11:22
Show Gist options
  • Save Chrisedmo/3216325 to your computer and use it in GitHub Desktop.
Save Chrisedmo/3216325 to your computer and use it in GitHub Desktop.
Shopify: Drop-down menu - select
<form name="shop-by-category">
<select onchange="if (this.value !== '') window.location = this.value;">
<option value="">Shop by Category</option>
{% for link in linklists[shop-by-category].links %}
<option name="collection" value="{{ link.url }}"{% if link.active %} selected="selected"{% endif %}>{{ link.title }}</option>
{% endfor %}
</select>
</form>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment