Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a div on my site which I animate to full screen on button click using .animate() on width/height. Something like this:

$('#mainc').animate({
    width: winw,
    height: winh,
    "margin-top": 0
});

Up until now I have been setting the width/height of the div using jquery on page load based on viewport size so I could calculate the required sizes of the div each time it was toggled on/off fullscreen based on the viewport size.

I am now trying to alter it to use min-width/min-height css media queries rather than js. But I need to be able to retrieve the width of the current element for its current media query, how can I get this info.

HTML

<div id="content">
    //content here
</div>

css

#content{
    width:800px;
}

@media (min-width: 1200px) {
    #content{
        width:1000px;
    }
}

@media (max-width: 800px) {
    #content{
        width:600px;
    }
}

So for example, on a 1200px wide screen my container div is loaded at 1000px wide, I click fullscreen button and its now 1200px wide. If I resize the browser whilst fullscreen, js takes care of it. But now the user clicks out of fullscreen so I need to get the non fullscreen size of the div for the current media query. I am also concerned about whether the media query will take the div out of fullscreen mode on resize. Will this happen or will it be overridden by my element styling, If it will how can I stop this?

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.