let cid = '2041d362-5e01-4796-b58c-70f177bdb028'; let lid = '0a528ddf-576c-403c-b1b5-daa127388fa4'; 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"); });