I am building a responsive website, and for good user experience, I need some layout changes from mobile to desktop. Specifically, I need to switch the order of some HTML elemen
Just use jQuery to change the DOM around as required
if (mobile == true) { $('div.three').insertBefore($('div.two')); }