diff --git a/js/freelancer.js b/js/freelancer.js index 5003f3f..d0adba3 100755 --- a/js/freelancer.js +++ b/js/freelancer.js @@ -29,4 +29,9 @@ $(function() { // Highlight the top nav as scrolling occurs $('body').scrollspy({ target: '.navbar-fixed-top' -}) \ No newline at end of file +}) + +// Closes the Responsive Menu on Menu Item Click +$('.navbar-collapse ul li a').click(function() { + $('.navbar-toggle:visible').click(); +});