The button is not one, how to make the text of this button change when you click? Here is the code:
<button class="btn btn-success btn-lg add-to-order" value="Добавить к заказу" onclick="" id="123"></button> <script type="text/javascript"> $('#123').click(function() { $('#123').val('Добавлено к заказу'); }); </script>
It doesn't work