🔔 Alert..!! Get 2 Month Free Cloud Hosting With $200 Bonus From Digital Ocean ACTIVATE DEAL

Pushme.js is a small but might really useful jQuery Plugin makes possible to push elements into specific containers depended on certain media queries.

Plugins Web

Documentation

pushme.js

This small but might really useful jQuery Plugin makes possible to push elements into specific containers depended on certain media queries.

###Demo Check out a short example of the pushme.js:
http://jsfiddle.net/v9tWd/3/

###Installation Just include the pushme.js and initialize it for your elements. Note: Also make sure that jQuery is defined.

<script type="text/javascript" src="path/to/your/pushme.js"></script> 
$(window).on('resize', function() { 	$('.foo').pushme({ 		element: '.bar', 		pushAction: 'prependTo', 		mq: 'screen and (max-width:767px)' 	}); }); 

You May Also Like