I Have this HTML code:
<div id="div_top"></div>
<div id="div_bottom"></div>
Only on Mobile website or when I resize the window I want div2 before div1.
So I use
if(window.innerWidth <= 480){
jQuery(document).ready(function(){
jQuery('#div_bottom').insertBefore('#div_top');
});
jQuery(document).resize(function(){
jQuery('#div_bottom').insertBefore('#div_top');
});
}
Load function works well, but resize not.
Is there a jQuery of CSS solution for this problem?