Показать сообщение отдельно
  #2 (permalink)  
Старый 21.12.2010, 16:18
Аватар для e1f
e1f e1f вне форума
Профессор
Отправить личное сообщение для e1f Посмотреть профиль Найти все сообщения от e1f
 
Регистрация: 03.04.2009
Сообщений: 1,263

Точка с запятой не там стоит:
function getDocumentSize()
{
    return {
        width: (document.body.scrollWidth > document.documentElement.scrollWidth)?
           document.body.scrollWidth:
        document.documentElement.scrollWidth,
        height: (document.body.scrollHeight > document.documentElement.scrollHeight)?
        document.body.scrollHeight:
        document.documentElement.scrollHeight
    }*!*;*/!*
}
Ответить с цитированием