can we open the dropdown when it focus using tab keyword .I want to open the drop down while using tab navigation .
Example if I am in input field (focus to input field ) then if I press tab focus goes to button then drop down , here I want to open the drop down here is my code http://codepen.io/anon/pen/RGKKrd?editors=1010
angular.module('app',[ ]).directive('abc',function(){
return {
restrict: 'EA',
link: function (scope, element ,attr) {
element.on('keydown', function (evt) {
if (evt.which ===9) {
// evt.preventDefault();
}
});
}
}
})