Hello, I am currently working on an SPA project in angularjs and I have two layout pages set up. On the first layout page (Index.html), there is a tab called Financial. My goal is to redirect to another layout page whenever this tab is clicked. Below is a snippet of my index.html:
//All js,css,angular files.
<li><a ui-sref="FAQ">FAQ's</a></li>
<li><a ui-sref="Careers">Careers</a> </li>
<li><a href="#">Offers & Deals</a> </li>
<li><a ui-sref="Financial ">Financial Reports</a> </li>
<div class="container">
<div ui-view></div>
</div>
Whenever I click on Financial Reports, I want to be redirected to a new layout page without loading any HTML content into the above ui-view. You can view my plunker here. Can you offer some guidance on how to achieve this? Thank you in advance.