Please READ THE QUESTION CAREFULLY
When using bootstrap, Consider the following scenario where col-lg-6
is applied for large
screen sizes and col-sm-12
on small screens.
The demo markup is
<div class="col-lg-6 col-sm-12">
<!--some content -->
</div>
Rules defined in col-sm-12
are not applied unless the screen size is SMALL
so I want to perform some action with jquery
when user resizes the screen and rules defined in col-sm-12
is applicable for current element. Don't want to go with javascript
workaround for measuring screen size!