jquery - How can I show div when onbeforeunload -


i have custom alert message made div. how can fade in div when page want reload or close ? other better suggestion that? thanks

	  window.onbeforeunload = function() {           $(".alert").fadein();        }
.alert{    height:80px;    width:200px;    padding:10px;    text-align:center;    border:1px solid #000;    display:none;    }
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>  <div class="alert">are sure ?</div>


Comments

Popular posts from this blog

php - failed to open stream: HTTP request failed! HTTP/1.0 400 Bad Request -

java - How to filter a backspace keyboard input -

java - Show Soft Keyboard when EditText Appears -