Hello guys,
I am trying to navigate between between tabs of an ASP.Net MVC Tab Control after a button click event. (Next-Previous Button). And to achieve this i've tried to simulate the same behaviour for keyboard navigation as shown in this help topic : http://help.syncfusion.com/aspnetmvc/tab/keyboard-navigation , so i craeated an html5 button like this :
<button type="button" class="btn btn-primary" id="next1" style="float: right;">Next</button>
and added a jQuery script:
<script>
$(function () {
$("#next1").click(function (e) {
$("#dishtab ul a").focus();
});
});
</script>
And when i click the button nothing happen and i can see this in the bottom of the browser :
localhost/Controller/Action#tabname
Thank you in advance :)