jquery - How to get event when user at the end of div contend? -
can please tell me how event when user scroll div contend @ end .i need task when user goes end of div contend .show 1 alert.it show alert when user goes end of contend .
here fiddle http://jsfiddle.net/naveennsit/pruyp/5/
<div data-role="page" id="test"> <div id="test" class="left test_h" style="width:97%;"> sachin ramesh tendulkar (listeni/səˈtʃɪn tɛnˈduːlkər/; born 24 april 1973)[1] indian cricketer acknowledged 1 of greatest batsmen in 1 day international cricket[2] in 2002, wisden cricketers' almanack ranked him second greatest test batsman of time, behind don bradman, , second greatest one-day-international (odi) batsman of time, behind viv richards.[3] tendulkar part of 2011 cricket world cup winning indian team in later part of career, first such win in 6 world cup appearances india.[4] recipient of "player of tournament" award of 2003 cricket world cup held in south africa. tendulkar won 2010 sir garfield sobers trophy cricketer of year @ icc awards.[5] has been recommended receipt of bharat ratna award, in fact has been speculated criteria award of bharat ratna changed allow him receive award.[6][7] member of rajya sabha of parliament of india.[8] tendulkar passed 30,000 runs in international cricket on 20 november 2009. on 5 december 2012, tendulkar became first batsman in history cross 34,000 run aggregate in formats of game put together.[9][10][11] @ 36 years , 306 days, became first ever player score double-century in history of odis. 2 years later became first player score 100 international centuries. of june 2013, tendulkar has played 662 matches in international cricket.[12] tendulkar has been honoured padma vibhushan award, india's second highest civilian award, , rajiv gandhi khel ratna award, india's highest sporting honour. first sportsperson , first 1 without aviation background awarded honorary rank of group captain indian air force. tendulkar has received honorary doctorates university of mysore , rajiv gandhi university of health sciences.[13][14] sachin holds 19th rank in icc player rankings test batsmen of 17 march 2013.[15] on 1 august 2012, sachin tendulkar nominated icc people's choice award third time.[16] in 2012, nominated rajya sabha, upper house of parliament of india.sachin tendulkar ranked 78th richest sportsman in world according forbes' list of world's highest-paid athletes year 2012.[17] in june 2013 list, forbes rankes sachin @ 51st position in highest paid athletes list, total earnings estimated usd 22 million.[18][19][20] sachin tendulkar named honorary member of order of australia in 2012.[21] on 23 december 2012, tendulkar announced retirement odis.[22][23][24][25] tendulkar has stated not playing t20 <span class="cursor" style="font-size:23px;">|</span> </div> </div>
try this
$('#realtimecontents').on('scroll', function () { if ($(this).scrolltop() + $(this).innerheight() >= $(this)[0].scrollheight) { alert('ends'); } });
little changes in html.
ids unique change html below,
<div data-role="page" id="test"> <div id="realtimecontents" class="left test_h" style="width:97%;">
check jsfiddle
Comments
Post a Comment