Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save CB9TOIIIA/31f63e880d955d4fc2b962c216c58996 to your computer and use it in GitHub Desktop.
Save CB9TOIIIA/31f63e880d955d4fc2b962c216c58996 to your computer and use it in GitHub Desktop.
Пишет в поле razmer какой размер выбран (отсутствует)
<script>
jQuery(document).ready(function($) {
option = jQuery("label.ui-state-active span.ui-button-text");
options = jQuery.trim(option.text());
jQuery("input[name=razmer]").val(options);
jQuery('.jbprice-option-buttons').change(function() {
option = jQuery("label.ui-state-active span.ui-button-text");
options = jQuery.trim(option.text());
jQuery("input[name=razmer]").val(options);
});
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment