html
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
script
$(document).ready(function() {
$(window).resize(function() {
var windowWidth = $(window).width();
if (windowWidth < 768) {
} else if (windowWidth < 992) {
} else {
}
});
$(window).trigger('resize');
});