How do I capture a resize event on the footer? I have some content I want to always keep between the header and footer, but the footer can expand from a textarea inside it, and so is covering my content.
code
var $footer = $(this).find('[data-role="footer"]');
$footer.on('resize', ... );
/code
Isn't firing when the footer resizes. But it does catch other events like keypress correctly.