How to programmatically disable/enable Order Now and Add to Cart buttons in the ServicePortal?
I made a function that works well for toggling the Add To Cart and Order Now buttons during my onSubmit():function toggleSubmitButtons(state) { var index; var cartBtns = document.getElementsByName('add_to_cart'); for (index = 0; index < c...
