I have an h1 that is far down a page..
TRIGGER EVENT WHEN SCROLLED TO.
and I want to trigger an alert
You could use this for all devices,
$(document).on('scroll', function() { if( $(this).scrollTop() >= $('#target_element').position().top ){ do_something(); } });