zE(function() { //Zopim API $zopim( function() { $zopim.livechat.departments.filter('iUsed'); $zopim.livechat.departments.setVisitorDepartment('iUsed'); $zopim.livechat.concierge.setTitle('Klantenservice'); $zopim.livechat.concierge.setName('iUsed'); $zopim.livechat.concierge.setAvatar('https://www.iused.nl/media/96/44/26/1638183397/apple-touch-icon.png'); $zopim.livechat.window.setTitle("Live chat"); $zopim.livechat.prechatForm.setGreetings("Wij helpen u graag"); $zopim.livechat.theme.reload(); $zopim.livechat.setOnStatus(chatStatusChange); //End Zopim API }); }); function chatStatusChange(status) { if (status === 'online') { jQuery( "#chat-button-float" ).show(); zE('webWidget', 'hide'); } else { jQuery( "#chat-button-float" ).hide(); zE('webWidget', 'show'); } } jQuery( document ).ready(function() { jQuery( "body" ).append( '
Chat direct met ons
Chatten
' ); jQuery( "#chat-button-float" ).on( "click", function( event ) { event.preventDefault(); $zopim.livechat.window.show(); jQuery("#chat-button-float").hide(); }); });