cancel
Showing results for 
Search instead for 
Did you mean: 

Hosted gateway payment stalled

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?

PcDudes524
Contributor
14 REPLIES 14

The id is closeAcceptConfirmationFooterBtn.

 

Here is the HTML

 

<button id="closeAcceptConfirmationFooterBtn" type="button" class="btn btn-success" data-dismiss="modal">Close</button>

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?

Powered by NexWebSites.com -
Certified Authorize.net developers

Try taking the script block out of the head and putting it down before the closing </body> tag.

Powered by NexWebSites.com -
Certified Authorize.net developers

That did it, thank you