10
Jak przesłać formularz za pomocą javascript?
I have a form with id theForm which has the following div with a submit button inside: <div id="placeOrder" style="text-align: right; width: 100%; background-color: white;"> <button type="submit" class='input_submit' style="margin-right: 15px;" onClick="placeOrder()">Place Order </button> </div> When clicked, the function placeOrder() is called. The function changes the innerHTML of the above div …
190
javascript