Linux SRV-16 6.18.44-paas #1 SMP PREEMPT_DYNAMIC Thu Aug 13 10:08:12 UTC 2026 x86_64
/
srv
/
data
/
trash
/
vhost_www.bachtale.com_1719306535
/
htdocs
/
node_modules
/
jquery.appear
/
/srv/data/trash/vhost_www.bachtale.com_1719306535/htdocs/node_modules/jquery.appear/README.md
# jQuery plugin to call a function when an element appears ## Usage Mimics a custom 'appear' event, which fires when an element scrolls into view or otherwise becomes visible to the user. $('#foo').appear(function() { $(this).text('Hello world'); }); This plugin can be used to prevent unnecessary requests for content that's hidden or outside the viewable area. ## Usage with additional options $('#foo').appear(function() { $(this).text('Hello world'); },{accX: 50, accY: 100}); Will fire 'appear' event with accuracy 50px in X and 100px in Y http://bas2k.ru/