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 standard website, and when the user zooms in (CTRL +), how can I prevent elements from resizing?

share|improve this question
Is it just certain elements you want to disable the zoom for or do you want to prevent zooming for some elements? And are you sure this is the right solution to whatever problem you have. Zooming is intended to zoom in on things, disabling this may well be non-intuitive to users who are using the zoom functionality to zoom in on things... – Chris Jun 23 '11 at 18:36
1  
Certain elements only. – Shamoon Jun 23 '11 at 19:39
+1 interesting question, but I'm afraid the answer to the question before the "how" is "Can you prevent the browser zooming on (certain) elements?". I'm afraid the answer to that is "no" (but would love to see someone prove me wrong there :D) – Jeroen Jun 28 '11 at 16:37
Well you should then checkout listen.grooveshark.com ! Try zooming in or zooming out – tunetosuraj Jul 1 '11 at 18:19
@tunetosuraj, grooveshark.com doesn't prevent the 'browser' from zooming. It just forces the user to reset to the default zoom. So, this doesn't disprove @Jeroen 's point – Diff.Thinkr Jul 5 '11 at 10:07

2 Answers

up vote 19 down vote accepted
+25

There's no way I know of to prevent items from scaling when a user zooms in. There may be a way to catch the zoom event and size elements accordingly, but it won't work in all browsers.

And to state the obvious - people zoom in because they can't read/see it at normal zoom. Pleeeaase don't break standard behaviour. It's there for a reason.

share|improve this answer
11  
+1 for "Pleeeeaase don't break standard behaviour." – cspray Jun 28 '11 at 17:53
agreed with @Charles. Standard behaviour is there for a reason. If there's a good reason for wanting to do this, I'd like to hear it. – Spudley Jun 28 '11 at 17:58

you can disable the cntl button with this:

<script language="JavaScript">
function disableCtrlKeyCombination(e)
{
        //list all CTRL + key combinations you want to disable
        var forbiddenKeys = new Array(‘+’);
        var key;
        var isCtrl;

        if(window.event)
        {
                key = window.event.keyCode;     //IE
                if(window.event.ctrlKey)
                        isCtrl = true;
                else
                        isCtrl = false;
        }
        else
        {
                key = e.which;     //firefox
                if(e.ctrlKey)
                        isCtrl = true;
                else
                        isCtrl = false;
        }

        //if ctrl is pressed check if other key is in forbidenKeys array
        if(isCtrl)
        {
                for(i=0; i<forbiddenkeys .length; i++)
                {
                        //case-insensitive comparation
                        if(forbiddenKeys[i].toLowerCase() == String.fromCharCode(key).toLowerCase())
                        {
                                alert(‘Key combination CTRL + ‘
                                        +String.fromCharCode(key)
                                        +‘ has been disabled.’);
                                return false;
                        }
                }
        }
        return true;
}
</script>
share|improve this answer
You should never just "disable" the control button as it has way to many uses. Disabling on a specific input may be ok, but to disable it all together then limits your suser from various things such as copy/paste. Fact is, even i'm having trouble finding a good plugin for such detections and may just spend this weekend writing one. – SpYk3HH Feb 10 '12 at 18:09

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.