JQUERY UI Accordion Resize on Window Resize?
- by nobosh
I'm using the JQUERY UI Accordion module:
<script type="text/javascript">
$(function() {
$("#sidebar_column_accordion").accordion({
fillSpace: true,
icons: { 'header': 'ui-icon-plus', 'headerSelected': 'ui-icon-minus' }
});
});
</script>
By using the fillSpace option, the accordion takes up the entire height of the window which I want. Problem is it calculate the height on page load, and if the user resizes their browser, it does not adjust...
Is there a way to have the accordion recalculate the height/size when the browser window is resized?
Thanks