Dec 22, 2018 6:26 PM
We're trying to make it so a button can open the live chat widget via javascript, how could we do this?
(by live chat, I am referring to the hubspot live chat widget)
Solved! Go to Solution.
Dec 27, 2018 10:03 AM
Hi, @Chris_Cardone.
Your request seems similar to this topic. If you use JavaScript to append #hs-chat-open
to the end of the URL, the chat widget will open immediately.
Check out the documentation here .
This feature was implemented due to feedback on this HubSpot Community request . The thread includes some helpful code examples from other developers.
Isaac TakushiAssociate Certification Manager |
May 5, 2019 7:38 PM
hi @chriscardone and @tjoyce , we also just released a Conversations Live Chat Widget API, where you can use this this function to open the widget:
window.HubSpotConversations.widget.open();
Feb 17, 2023 2:49 PM
Hi all,
Is it possible to hide bubble on mobile and only allow users to open with link clicking?
May 13, 2019 6:22 AM
Hello,
We succeed using this javascript call:
// Open chat HubSpotConversations.widget.open() // Close chat HubSpotConversations.widget.close()
Best regards,
May 3, 2019 10:45 AM
You could also do -
hubspot.messages.EXPERIMENTAL_API.requestWidgetOpen()
---
tim@belch.io
May 5, 2019 7:38 PM
hi @chriscardone and @tjoyce , we also just released a Conversations Live Chat Widget API, where you can use this this function to open the widget:
window.HubSpotConversations.widget.open();
Apr 23, 2020 3:47 PM
This worked for me. Also, is there a way to also type in a default message automatically from the user side when the window opens?
Dec 27, 2018 10:03 AM
Hi, @Chris_Cardone.
Your request seems similar to this topic. If you use JavaScript to append #hs-chat-open
to the end of the URL, the chat widget will open immediately.
Check out the documentation here .
This feature was implemented due to feedback on this HubSpot Community request . The thread includes some helpful code examples from other developers.
Isaac TakushiAssociate Certification Manager |