You should create an event handler for that such as:
$(document).on('click', '.nav li', function() { // Clicking any li in your .nav-element
loadType = $(this).children("a").prop("href");
//parse out # from #BO
// call loadUsers, loadUserDetails etc.
});