ie8 でページを表示すると、次のエラーが表示されます。解決策はありますか??
Web ページのエラーの詳細
ユーザー エージェント: Mozilla/4.0 (互換性あり; MSIE 7.0; Windows NT 5.1; InfoPath.2; BRI/2; BOIE8;ENUS) タイムスタンプ: 2012 年 8 月 23 日 18:18:49 UTC
メッセージ: 予期される識別子、文字列または数値 行: 357 文字: 4 コード: 0
$(function(){
var $container = $('.two-thirds-cloumn');
$('.widgets-cout').masonry({ singleMode: true });
$container.imagesLoaded(function(){
$container.masonry({
itemSelector: '.brick',
columnWidth: 485
});
});
$container.infinitescroll({
navSelector : '.nav-previous', // selector for the paged navigation
nextSelector : '.nav-previous a', // selector for the NEXT link (to page 2)
itemSelector : '.brick', // selector for all items you'll retrieve
loading: {
finishedMsg: 'No more pages to load.',
img: 'http://i.imgur.com/6RMhx.gif'
},
behavior: 'twitter',
},
// trigger Masonry as a callback
function( newElements ) {
// hide new items while they are loading
var $newElems = $( newElements ).css({ opacity: 0 });
// ensure that images load before adding to masonry layout
$newElems.imagesLoaded(function(){
// show elems now they're ready
$newElems.animate({ opacity: 1 });
$container.masonry( 'appended', $newElems, true );
});
}
);
});