Skip to content

Instantly share code, notes, and snippets.

@pwightman
Created June 30, 2014 17:20
Show Gist options
  • Save pwightman/a811fce94e63ac1077ad to your computer and use it in GitHub Desktop.
Save pwightman/a811fce94e63ac1077ad to your computer and use it in GitHub Desktop.
<a href="javascript:toggleChatWindow()">Chat With Us!</a>
<script>
function toggleChatWindow() {
if (FHChat.chatState == "minimized") {
FHChat.transitionTo("maximized");
document.getElementById("fchat-message").focus();
} else {
FHChat.transitionTo("minimized");
}
};
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment