Skip to content

Instantly share code, notes, and snippets.

@alex-boom
Created December 6, 2016 13:14
Show Gist options
  • Save alex-boom/b4d4145b3ddbad60f5e4d293367be917 to your computer and use it in GitHub Desktop.
Save alex-boom/b4d4145b3ddbad60f5e4d293367be917 to your computer and use it in GitHub Desktop.
запуск функции при изменении ширины экрана
//При каждом изменении ширины экрана запускается функция
function resizeAction() {
//add code
};
resizeAction();
$(window).resize(resizeAction);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment