I have this div in my page that is showing X at top of modal, I like to by clicking this user redirect to homepage. I tried this but the even is not firing at all.
<div class="modal-content">
<div class="close" onclick="redirecttologin()">x</div>
......
</div
this is java script but even the alert is not showing
function redirecttologin() {
alert("test");
document.location.href = "/";
};
I am sure that it has the reference to java script file as other things are working in page.
*problem was class="close".