Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save bennick/4531323 to your computer and use it in GitHub Desktop.
Save bennick/4531323 to your computer and use it in GitHub Desktop.
unique products blog post on lemonstand, click listener example
// Inside of click event listener
// Get image file name that is stored as the img id
var code = $(img_element).attr('id');
// Create an option and insert it into the select dropdown
$(product_option_select_dropdown).append("<option value='" + code + "'>" + code + "</option>");
// Select the newly created option
$(product_option_select_dropdown).value = code;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment