Javascript Course

The JavaScript code snippet presented in this page can be used to refresh the page if the window width is changed from a device size (mobile, or tablet, or desktop size) to other.
- For examples, if you have in your page some content with different settings for desktop, tablet, and mobile size; if the user resizes the window from full size to a lower window-width (or viceversa), the page is refreshed so to have the content according to current browser's width.


Script code

Add the code in the page you want to refresh it according to window width. Then, to test it, rezise the browser.

<h4>Resize the window</h4>

<script>
/* JS code to refresh the page if window is changed (from: https://coursesweb.net/ ) */
function winSize() {
 // returns an object with height and width of the window
 var win_size = {};
 if (self.innerHeight) {
 win_size.height = self.innerHeight;
 win_size.width = self.innerWidth;
 } else if (document.documentElement && document.documentElement.clientHeight) {
 win_size.height = document.documentElement.clientHeight;
 win_size.width = document.documentElement.Width;
 } else if (document.body) {
 win_size.height = document.body.clientHeight;
 win_size.width = document.body.clientWidth;
 }
 return win_size;
}
var win_size = winSize();

// set indice "m" for mobile (max. 400px), "t" for tablet (max. 700px), "d" for desktop, according to window size
var dev_i = (win_size.width <400) ? 'm' : ((win_size.width <700) ? 't' :'d');

// when Resize browser, check window-width; refresh if current device indice not initial device indice
window.addEventListener('resize', function(e){
 var win_size2 = winSize();
 var dev_i2 = (win_size2.width <400) ? 'm' : ((win_size2.width <700) ? 't' :'d');
 if(dev_i2 != dev_i) window.location.replace(window.location.href);
}, false);
</script>

The script refreshes the page according to these two sizes: 400px, and 700px. If you want to have one size that determines the refresh, modify the variables: var dev_i and var dev_i2.
For example:

var dev_i = (win_size.width <500) ? 'm' : 'd';
//...
var dev_i2 = (win_size2.width <500) ? 'm' :'d';

Daily Test with Code Example

HTML
CSS
JavaScript
PHP-MySQL
Which tag is a block element?
<div> <img> <span>
<div>Web Programming and Development</div>
Which CSS code displays the text underlined?
font-style: italic; text-decoration: underline; font-weight: 500;
h2 {
  text-decoration: underline;
}
Click on the JavaScript function that can access other function after a specified time.
insertBefore() setTimeout() querySelector()
function someFunction() { alert("CoursesWeb.net"); }
setTimeout("someFunction()", 2000);
Click on the instruction that returns the number of items of a multidimensional array in PHP.
count($array) count($array, 1) strlen()
$food =["fruits" =>["banana", "apple"), "veggie" =>["collard", "pea"));
$nr_food = count($food, 1);
echo $nr_food;       // 6
Refresh page if window width changes from a device size to other

Last accessed pages

  1. parseCSV (1489)
  2. CSS cursor property - Custom Cursors (5721)
  3. Introduction to Adobe Flash (2486)
  4. PHP getElementById and getElementsByTagName (49158)
  5. Methods of the String object in JS (196)

Popular pages this month

  1. Courses Web: PHP-MySQL JavaScript Node.js Ajax HTML CSS (324)
  2. Read Excel file data in PHP - PhpExcelReader (118)
  3. The Four Agreements (97)
  4. PHP Unzipper - Extract Zip, Rar Archives (94)
  5. The Mastery of Love (87)
Chat
Chat or leave a message for the other users
Full screenInchide