Skip to content

Instantly share code, notes, and snippets.

@mubaidr
Created September 30, 2017 16:20
Show Gist options
  • Save mubaidr/d54c628854053ba825f6958f68e5fa33 to your computer and use it in GitHub Desktop.
Save mubaidr/d54c628854053ba825f6958f68e5fa33 to your computer and use it in GitHub Desktop.
Enable bootstrap collapsible navbar without jQuery
const classChildren = x => document.getElementsByClassName(`navbar-${x}`)[0];
classChildren(‘toggle’).addEventListener(‘click’, () => {
classChildren(‘collapse’).classList.toggle(‘collapse’);
}, false);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment