Bootstrap 4
Bootstrap 3
$(document).ready(function(){
// update onload
$("h2").text( breakpoint );
if ( xs == true ) {
alert("mobile first");
}
// Update on window resize
$( window ).resize( function(){
$("h2").text( breakpoint );
});
});
It also adds and updates a body class on window resize. Resize your window and use chrome web inspector to see the change.