let cid = '2041d362-5e01-4796-b58c-70f177bdb028'; let lid = 'a40cd187-20a0-450b-b663-aaba870351fd'; let backendHost = "https://hello.mister-james.com/_utalic_release/"; $.get(backendHost + "checklist?id="+cid+"&checklist_uuid="+lid).then((checklistData) => { document.title = checklistData.public_title; new CheckListTwo( document.getElementById("mainDiv"), checklistData.items, { cid: cid, lid: lid, backend: backendHost, theme: checklistData.theme?checklistData.theme:"multicolor", utc_offset: checklistData.utc_offset, logo: checklistData.logo, imprint: checklistData.imprint, responseLang: "en" }, (answerData, contactData) => { }, (markdown) => { }, checklistData.viewstyle?checklistData.viewstyle:"table"); });