This function is not working at first click. This is edited code of read more function in w3schools.
function myFunction2() {
var dots = document.getElementById("std-essen");
if (dots.style.display === "none") {
dots.style.display = "block";
dots.scrollIntoView();
} else {
dots.style.display = "none";
}
}