width が 600px 以上に設定されている場合にのみ、以下の JavaScript を実行したい。max-width 条件を設定するにはどうすればよいですか?
$(function() {
$('#nav li a').bind('click',function(event){
var $anchor = $(this);
$('html, body').stop().animate({
scrollTop: $($anchor.attr('href')).offset().top
}, 1500,'easeInOutExpo');
event.preventDefault();
});
});