Reputation: 4569
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?
Upvotes: 2
Views: 224
Reputation: 185923
You can define and trigger custom events:
Binding the custom event:
$("#section").bind("layoutchange", function() {
// stuff to do when the layout changes
});
Triggering the custom event:
$("#secton").css({propertyX: otherValue }).trigger("layoutchange");
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.
Upvotes: 1