JSFiddle - React, Tailwind, and code Playground
by Jim_Toth
HTML
<img src="https://static.squarespace.com/static/51b3dc8ee4b051b96ceb10de/51ce6099e4b0d911b4489b79/51ce613de4b0d911b44917c4/1350067330613/1000w/les-miserables-posters-featuring-anne-hathaway-and-amanda-se_preview_10874120.jpg" />
JavaScript
var width = $(window).width();
$(window).resize(function() {
if (
(width > 769 && $(window).width() < 769) ||
(width > 300 && $(window).width() < 300) ||
(width > 1024 && $(window).width() < 1024)
)
{
console.log('reLoad');
}
});