Site Logo

G

Группа: Модификаторы

Платформы: t0700, t1000

Синтаксис

[G:Модификаторы]

Описание

Группа модификаторов.

Примеры

('#back-to-top').on('click', function(){ $("html, body").animate({scrollTop: 0}, 500); return false; }); $(window).load(function(){ // hide button to top if the document height not greater than window height*2;using window load for more accurate calculate. if ((parseInt($(window).height())*2)>(parseInt($(document).height()))) { $('#back-to-top').hide(); } }); })(jQuery); >