$(document).ready(function() { var devicewidth1 = document.documentelement.clientwidth; $(window).scroll(function () { var height = $(document).scrolltop(); if (height > 53&&devicewidth1 > 768) { $(".top_con").addclass("affix"); }else{ $(".top_con").removeclass("affix"); } }); $("#btn").click(function() { history.go(-1); }); if (devicewidth1 < 768) { $(".top_con").removeclass("navbar-fixed-top"); } else { $(".top_con").addclass("navbar-fixed-top"); } });