as title says :)
Sébastien | French WordpressDesigner answers:
for a resolution < 769 for example
var windowsize = jQuery(window).innerWidth();
if (windowsize < 769) {
$("#first_element").insertAfter("#second_element");
}
tomaso1980 comments:
This is what I was looking for :)