Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save AlexKardone/186b5861765954aab50891f2095173c0 to your computer and use it in GitHub Desktop.

Select an option

Save AlexKardone/186b5861765954aab50891f2095173c0 to your computer and use it in GitHub Desktop.
Подгонка ширины блока под ширину окна
function widthDetect() {
$('.class-name').css('width', $(window).width());
};
$(window).resize(function() {
widthDetect();
});
@AlexKardone
Copy link
Author

Если нужно, чтобы при изменении размера окна ширина блока подгонялась под новый размер, используем эту функцию.
Также можно вызывать ее сразу, без события.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment