Skip to content

Instantly share code, notes, and snippets.

@vgrish
Created February 4, 2016 14:11
Show Gist options
  • Save vgrish/d88b666d670baa34745b to your computer and use it in GitHub Desktop.
Save vgrish/d88b666d670baa34745b to your computer and use it in GitHub Desktop.
$('select[name="options[size]"]').on("change", function(e) {
var $this = $(this);
var forma = $(this).closest('.ms2_form').find('select[name="options[forma_zakaza]"]');
if (!!forma) {
forma.prop('disabled', true);
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment