Created
June 13, 2018 20:34
-
-
Save CB9TOIIIA/31f63e880d955d4fc2b962c216c58996 to your computer and use it in GitHub Desktop.
Пишет в поле razmer какой размер выбран (отсутствует)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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