Is it possible to make any menu option in the angular selectpicker redirect to a specific page when clicked? If so, how can this be achieved?
I attempted the following approach without success:
<option><a href="">First Option</a></option>
Here is a link to the Codepen sandbox for reference.
HTML
<html ng-app="selectDemoApp">
<body>
<div role="main">
<div class="container">
<section ng-controller="SelectCtrl">
<div class="page-header">
<select class="selectpicker">
<option>Mustard</option>
<option>Ketchup</option>
<option>Relish</option>
</select>
</div>
</section>
</div>
</div>
</body>
</html>
JS
angular.module('selectDemoApp', [ 'angular-bootstrap-select', 'angular-bootstrap-select.extra']);
function SelectCtrl($scope) {
$scope.form = undefined;
}