Add window width to URL on resize

Add window width to URL on resize

Trying to get jQuery to add current window width to URL on resize. It keeps reloading on mobile devices. How do I solve this problem. My code looks like below.


  1. $(window).bind('resize',function(){
  2.     if (window.location.href.indexOf('reload') === -1) {
  3.          window.location.replace(window.location.href+'?reload' + ($(window).width()));
  4.     } else {
  5.     window.location.replace('?reload' + ($(window).width())); // With current width
  6. }
  7.     });