Some (well, nearly all) of my code that is in my jQuery .ready function also applies when the window is resized, as it\'s layout work. However, since it\'s the same code, ho
One more better option
$(window).on("load resize",function(e){ function abc() { // code here } });