CodeIgniter / JavaScript / JQuery / PHPhow to get window size for making screen wise changes February 17, 2018 Chandan SharmaComment on how to get window size for making screen wise changesvar ww = document.body.clientWidth; if (ww < 768) { } else if (ww >= 768) { } Read More