1<script type="text/javascript">
2 function redirect() {
3 if (screen.width <= 950) {
4 window.location = "https://www.google.com/";
5 }
6
1function redirect() {
2 if (screen.width <= 950) {
3 window.location = "https://www.google.com/";
4 }
1<script type="text/javascript">
2 $(window).on('load resize',function(){
3 if($(window).width() < 950){
4 window.location = "https://www.google.com"
5 }
6 });
7</script>
8