javascript window.onresize on page load - Stack Overflow

I have a script which shows different content depending on the screen size, it looks like this:window.o

I have a script which shows different content depending on the screen size, it looks like this:

window.onresize = function(event) {
if ((window.innerWidth > 750 && window.innerWidth < 1250))  {

//Do something

}}

The above works absolutely fine when re-sizing the browser. My question is how can i get the above to work if the user opens the page up with a window width of say 750?

I have just tested this and obviously the event isn't triggered until the browser is re-sized, this is causing the above not to work

I have a script which shows different content depending on the screen size, it looks like this:

window.onresize = function(event) {
if ((window.innerWidth > 750 && window.innerWidth < 1250))  {

//Do something

}}

The above works absolutely fine when re-sizing the browser. My question is how can i get the above to work if the user opens the page up with a window width of say 750?

I have just tested this and obviously the event isn't triggered until the browser is re-sized, this is causing the above not to work

Share Improve this question asked Jul 31, 2013 at 15:59 danyodanyo 5,84620 gold badges66 silver badges120 bronze badges 3
  • Why don't you use media queries instead? – taylorc93 Commented Jul 31, 2013 at 16:01
  • I would remend media queries as well. However, if you can use a library like JQuery, this would be as simple as $(document).ready(function(){ if (window.innerWidth == 750) { //Do Something } – Ishikawa91 Commented Jul 31, 2013 at 16:03
  • 1 @taylorc93 - i need to support older browsers that's why – danyo Commented Jul 31, 2013 at 16:14
Add a ment  | 

3 Answers 3

Reset to default 8
var onResizing = function(event) {
if ((window.innerWidth > 750 && window.innerWidth < 1250))  {

//Do something

}};

window.onresize = onResizing;
window.onload = onResizing;

Using jquery:

$(document).ready( function(){
   if (window.innerWidth == 750) {
     // Do something
   } 
});

The "onresize" function is an event listener that fires when the user resizes their page. To get your code to run on page load you need to set it up to fire on the page load event instead (as the page load event is a different event from the resize event).

window.onload = function(event) {
    if ((window.innerWidth > 750 && window.innerWidth < 1250))  {
        //Do something
    }
}

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743879994a4522999.html

相关推荐

  • javascript window.onresize on page load - Stack Overflow

    I have a script which shows different content depending on the screen size, it looks like this:window.o

    1天前
    10

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信