Close bootstrap Navbar-collapse on click outside the Navbar,
just use the give code in code box below to get the required result.
$(document).click(function (e) {
if($('.collapse').hasClass('show') &&
!$('nav').is(e.target) && $('nav').has(e.target).length === 0){
$('.navbar-toggler').click()
}
})