Do you have any suggestions regarding these issues? Apologies if these are dumb questions, by the way - I'm a beginner. My source code is below.
</!DOCTYPE html>
<html>
<head>
<script type="text/javascript">
function load_checklist_callback(data) {
document.getElementById('checklist_container').innerHTML =
checkvist.create_tasks_html(data);
}
function load_checklist() {
// Remove the next line if your checklist is public
checkvist.login('my email', 'my OpenID KEY');
checkvist.get_tasks(<my checklist id>, 'load_checklist_callback');
}
var checkvist_interval = setInterval(function() {
if (document.getElementById('checklist_container')) {
clearInterval(checkvist_interval);
load_checklist();
}
}, 20);
</script>
<title>To do</title>
</head>
<body>
<div id="checklist_container"></div>
</body>
</html>