Skip to content

Instantly share code, notes, and snippets.

@lvela
Created December 30, 2011 16:12
Show Gist options
  • Save lvela/1540457 to your computer and use it in GitHub Desktop.
Save lvela/1540457 to your computer and use it in GitHub Desktop.
$(id=product_id).change(function() {
var selected_product = $(this).attr('value');
console.debug(selected_product)
$('label[product_id]').hide()
$('input[product_id]').hide()
$('label[product_id=' + selected_product + ']').show()
$('input[product_id=' + selected_product + ']').show()
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment