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
3 Answers
Reset to default 8var 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
评论列表(0条)