Hi,
In my mobile application I need to resize an element of a page before transition (all the page have dynamic content) but respecting a certain rule that require the using of the offsetHeight of the page.
The problem, I use pagebeforeshow event handler to do this, but when I receive the event the page is still in "display=none" that imply I can not get the offsetHeight of the page.
If I use pageshow event, in this case the page is already display (transition is finished) I can get the offsetHeight but after the resizing the element there is a blink in the page, I would like to avoid this.
Is it a way to get an event that give an access to the page but just before the transition and when "display=block" ?