Is there a way to change the grid position when we minimize the screen?
For example:
<div class="row">
<div class="col-lg-6 -col-sm-12 col-xs-12">
<img src="http://placehold.it/350x150">//first image
</div>
<div class="col-lg-6 -col-sm-12 col-xs-12">
<img src="http://placehold.it/350x150">//second image
</div>
</div>
Normally, if we minimize the screen until sm or xs-screen it will look like this:
--------
|first |
| |
|second|
--------
How can we make it look like this?
--------
|second|
| |
|first |
--------
I'm not sure if this can be done with jQuery, and I have limited knowledge about jQuery. Can someone please help me achieve this?