I want to check each time the width of the window (even on browser resize). This is my function:
function checkWidth() {
var width = $(window).width()
if(width > 640){
return true;
}else{
return false;
}
alert(width);
}
if(checkWidth()){
$(function(){
$("#fancylink").fancybox({
'type': 'iframe',
'width': 900,
'height': 600,
'autoScale': false
});
});
}
But the width is checked only once. The reason is I think that my query is on the outer side and therefore only checked on page load. How can I restructure my code?
Edit:
fancybox is instantiated on the element with the id fancylink. In this case it is an anchor element with a certain URL. This URL is opened as iFrame in the fancybox if someone clicks on the link. My goal is to not open the fancybox if a certain width is not reached. Instead it should act as normal link and open in a new tab. Only when the width is e.g. more than 640px than it should open in a fancybox as iFrame.
So I would have to check the browser width on browser resize or if device orientation changes from portrait to landscape. In my code fancybox will be instantiated if at page load the width is reached or not. But if device orientation changes or browser resizes this doesn't work anymore. Is there a solution for this?
I think I'll leave it as it is because I don't know any other solution for my problem.

$(window).on('resize', function() {...})– adeneo Dec 1 '12 at 11:18