<script type="text/javascript">
jQuery(document).ready(function(){
var windowsize = jQuery(window).width();
if(windowsize <= 768){
//alert('mobile, ipad');
//jQuery('.category1_banner').insertAfter('.inner_outer');
jQuery( ".brand_description_content_top" ).insertAfter( jQuery( ".inner_outer" ) );
}
else {
jQuery( ".brand_description_content_top" ).insertBefore ( jQuery( ".inner_outer" ) );
}
});
jQuery(window).resize(function() {
var windowsize = jQuery(window).width();
if(windowsize <= 768){
//alert('mobile, ipad');
//jQuery('.category1_banner').insertAfter('.inner_outer');
jQuery( ".brand_description_content_top" ).insertAfter( jQuery( ".inner_outer" ) );
}
else {
jQuery( ".brand_description_content_top" ).insertBefore ( jQuery( ".inner_outer" ) );
}
});
</script>
Categories: Php Mysql Ajax Jquery JavaScript Mysql
0 Comments