I'm trying to figure out the width of the scrollbars of the browser (e.g. Edge, Firefox, Opera, Chrome, etc...) a user might be using (if the scrollbars are present) and added it to the width of the window so that my JQuery code aligns up with my CSS code for when the browser is resized so far I can figure out the width of the window but not the scrollbars.
JQuery
$(window).on('resize',function(){
if($(this).width() > 680){
//add remove css styles
}
});