Back
Syntax
Study
Editor
Mode:
HTML
CSS
JavaScript
PHP
Reset
Run »
HTML / CSS / JS
// Get offset from document var pos = $('#card').offset(); console.log('Top: ' + pos.top + ', Left: ' + pos.left); // Get position from offset parent var rel = $('#tooltip').position(); console.log('Relative top: ' + rel.top); // Set offset (move element) $('#floater').offset({ top: 100, left: 200 }); // Scroll position var scrolled = $(window).scrollTop(); console.log('Scrolled: ' + scrolled + 'px'); // Smooth scroll to element $('html, body').animate({ scrollTop: $('#section2').offset().top }, 600);
Result
Open