Frequently Asked Questions

Can I use my own button?

Yes you can.

Forts, add the following variable above the embed code. This will prevent the floating button from appearing.

<script>
  let CR = {
    showFloatButton: false,
  };
</script>
<script defer src="https://callbackrequests.com/embed/button.js?0.1.3"></script>

Now add in a button, any where on your page, ad make sure it has a request-callback class on the button. The script that you insert at the bottom of the page will listen for clicks on all elements with this class and fire the Callback Requests modal. Here is an example.

<button type="button" class="btn btn-primary request-callback">
  Request a callback
</button>

Although we are not hiding the float button, on our homepage you can see a custom button in action. The pink "Request A Callback" button uses this feature.