Web Widget expand on load | Community
Skip to main content

Web Widget expand on load

  • November 27, 2017
  • 4 replies
  • 0 views

How do I make the webwidget contact form expand on load.  I've been trying variations on this with no luck:

<script type="text/javascript">
window.zESettings = {zE.activate()
</script>

 

Any ideas?

 

Thank you!

This topic has been closed for replies.

4 replies

  • November 27, 2017

Hey Andy, I am going to move this post to the Support Q&A section as it may get missed in here as this section is more about the Apps Framework and building Zendesk Apps.

Cheers, Phil.


  • Author
  • November 27, 2017

Thank you Phil!


  • Author
  • November 27, 2017

I solved it with this:


zE(function() {
zE.activate();
})

function show() {
zE.show();
zE.activate();
}


Nicole17
  • December 5, 2017

Glad to hear you go it figured out, Andy! Thanks for sharing your answer as well.