August 10, 2016August 10, 2016 How To Open Ionic SideMenu Manually? This is rather simple: Inject the $ionicSideMenuDelegate in your controller like this: .controller('myCtrl', function($scope, $ionicSideMenuDelegate) {}) And then you can open the side menu with: $ionicSideMenuDelegate.toggleLeft();