At a certain stage, I am applying CSS to a section of my page.
Is there an event one can get once the re-layout has completed?
At a certain stage, I am applying CSS to a section of my page.
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You can define and trigger custom events:
Binding the custom event:
Triggering the custom event:
However, this custom “layoutchange” event is not related to the actual reflow being completed, but one can assume that the reflow is fast enough, so that by the time you execute the handler it has been completed.