I have an mdTabs setup like this:
<md-tabs md-dynamic-height md-border-bottom>
<md-tab label="The first tab" id="first-tab-wrapper" class="tab-wrapper">
</md-tab>
<md-tab label="The second tab" id="second-tab-wrapper" class="tab-wrapper">
</md-tab>
</md-tabs>
<button>GO TO SECOND TAB</button>
When the user clicks the button
, the browser should go to the second mdTab. How do I do this?