Когда документ загружается, прекратите загрузку, если это условие не выполняется
Когда $(document).ready(function() останавливается, если окно больше 350.
$(document).ready(function(){
if ($(window).width() > 350 ){
alert ("No!!! stop");
// I want to stop loading the page altogether if window is less than 350.
return false;
}
else if ($(window).width() < 350 ) {
alert ("Ok continue.")
}
Заранее спасибо.
2 ответа
$(document).ready(function(), выполняемая после загрузки страницы. Вы можете сделать это, если поместите свой javascript поверх тела, поэтому он будет выполняться до загрузки страницы
<html>
<body>
<script type='text/javascript'>
//your actions here
//for example redirect to empty page that says stop your width is too large
//another solution is to spam alerts() and if there is no alerts reload page to spam more
//show page with javascript
//$("body').html('STAPH')
</script>
...
</body>
</html>
Может я как.
Хорошо, я только что добавил
$("div").empty();
просто очистить все div, если окно> 350.