Good day. There are many inputs that are generated by the system. I need to display the value of inputs separately in the body of the site.
since the system generates an automatic (plugin), then I attached to the name and pulled the value into a div block, but it does not change dynamically when a person clicks on the rocker.
<script type="text/javascript"> jQuery(document).ready(function($) { var value_input = $("input[name*='product-options[1271][58]']").val(); $("#for_my_script").append("<p>" + value_input + "</p>") }); </script> I will be grateful for the help. thank.

