Zhenyaxxxx,
$(function() {
if (localStorage.getItem('view')) {
localStorage.removeItem('view');
const element = document.getElementById("element");
element.scrollIntoView({
block: "center",
inline: "center"
});
};
$(".form2").submit(function(event) {
event.preventDefault();
$.ajax({
type: "POST",
url: "send_otzivi.php",
data: $(this).serialize()
}).done(function() {
localStorage.setItem('view', "yes");
document.location.href = "http://test.ensy.com.ua";
});
});
});