I have code like this using Bootstrap 3 for desktop devices:
<div class="row">
<div class="col-md-5">
<img src="logo.png">
</div>
<div class="col-md-4">
Element 1
</div>
<div class="col-md-3">
Element 2
</div>
</div>
I want to change positions of the colums for mobile version only to change Element 1 and Element 2 HTML code how can I do with jQuery or ?
I want this change for mobile devices, I don't know how to change positions of the elements? I need this in results
<div class="row">
<div class="col-md-5">
<img src="logo.png">
</div>
**<div class="col-md-3">
Element 2
</div>**
<div class="col-md-4">
Element 1
</div>
</div>