jquery - Do something if screen width is less than 960 px -


how can make jquery if screen width less 960 pixels? code below fires 2nd alert, regardless of window size:

if (screen.width < 960) {     alert('less 960'); } else {      alert('more 960'); } 

use jquery width of window.

if ($(window).width() < 960) {    alert('less 960'); } else {    alert('more 960'); } 

Comments

Popular posts from this blog

objective c - Change font of selected text in UITextView -

php - Accessing POST data in Facebook cavas app -

c# - Getting control value when switching a view as part of a multiview -