I need to apply the following jquery for mobile browsers only:
<script>
$('.right').insertBefore('left');
</script>
This is to reorder the position of bootstrap columns.
How do I do this? Does it need to be wrapped in something?
I need to apply the following jquery for mobile browsers only:
<script>
$('.right').insertBefore('left');
</script>
This is to reorder the position of bootstrap columns.
How do I do this? Does it need to be wrapped in something?
It's always very hard to detect whether its a mobile device's browser or a laptop with a touch screen. So instead of detecting that; if you are concerned about the screen size then I will recommend you to detect the screen size and if its below certain level(lets say below 481px
) then we will assume that its a mobile screen and will execute your needed code as follows:
$(document).ready(function () {
$(window).on("resize", function (e) {
checkScreenSize();
});
checkScreenSize();
function checkScreenSize(){
var newWindowWidth = $(window).width();
if (newWindowWidth < 481) {
$('.right').insertBefore('.left');
}
else
{
$('.left').insertBefore('.right');
}
}
});