can anyone please explain, with an example if possible, how to load dynamic content inside an iscroll div and assign a new height to it?
I can get it to work but I can't control the height of the scroll for the new content.
I'm new to all this and have no clue were to start.
here's what I'm working on:
http://homepage.mac.com/jjco/test/index7.html
when the page is loaded you see the scroll bar where there's no content... clicking on print/damm (shows the height I originally set for this content) clicking on print/fcbarcelona (maintains the same height and position of the scroll you used before) as you see it's not working as it should. obviously, I don't want the scroll to be there when it's not necessary.
any help would be greatly appreciated.
It's better to use the refresh() method in iScroll, which will recalculate the height.
Take a look at iScroll4
In iscroll.js, I see experimental option: checkDOMChanges: false,// Experimental
You can enable and use it.
try this, when you insert your new data into iScroll do these steps
To watch height changes:
I had a similar problem, and just
refresh()
didn't help, so didn't help destroying and recreating iScroll. In my case I was loading a lot of elements into iScroll div. What did solve the problem issetTimeout()
. As MASTERING THE REFRESH() METHOD said adding even0ms
to asetTimeout()
would solve a lot of problems. In my case it was500ms
. =here is code sample:
My problem was that
refresh()
function was executed before content was inserted into DOM, so increasing timeout helped. I hope it helps to beginners like me.