bootstrap-detect-breakpoint
Detect the current Bootstrap breakpoint in JavaScript.
Usage
Include the bootstrap-detect-breakpoint.js
.
<script src="/src/bootstrap-detect-breakpoint.js"></script>
Get the current breakpoint with
var currentBreakpoint = bootstrapDetectBreakpoint()
which will return an object with the current breakpoint name and index,
like this
{
"name": "lg",
"index": 3
}
The index goes from 0 to 4, where 0 is "xs" and 4 is for "xl".
Get it working with Bootstrap 5
In Bootstrap 5 there is an issue that the css variables for breakpoints are missing. I already created a pull request, but I don't know when it will be merged.
You can make this script work with just adding this to your scss
:root {
@each $name, $value in $grid-breakpoints {
--bs-breakpoint-#{$name}: #{$value};
}
}