Technikholger/script.js
2023-03-22 17:31:40 +01:00

13 lines
288 B
JavaScript

$('#chatbot').dialog({
autoOpen: false,
height: 500,
width: 450,
position: {my: 'right bottom', at: 'right-5 bottom-5', of: 'body'},
close: () => { $('#help-div').show();}
});
$('#help').click(() => {
$('#chatbot').dialog('open')
$('#help-div').hide();
} );