When I click the 'Pay' button in my hosted gateway the words change to 'Processing' and nothing happens. How can I determine what is happening?
09-19-2017 08:52 AM
The id is closeAcceptConfirmationFooterBtn.
Here is the HTML
<button id="closeAcceptConfirmationFooterBtn" type="button" class="btn btn-success" data-dismiss="modal">Close</button>
09-20-2017 11:11 AM
Then putting the following in your index page, in a script block by itself, should work. An example of it working is at : https://nexwebhost.com/authorizenet/
<script type="text/javascript"> document.getElementById("closeAcceptConfirmationFooterBtn").onclick = function () { window.location = "https://nexwebhost.com"; }; </script>
If not, do you have a live URL to check out?
09-20-2017 11:20 AM
Here is the live url: https://www.blackrabbitbooks.com/process/index.php
09-20-2017 11:34 AM
Try taking the script block out of the head and putting it down before the closing </body> tag.
09-20-2017 11:45 AM
That did it, thank you
09-20-2017 11:47 AM