Search code examples
ionic-frameworkhref

Why href inside button not working?


<button class="button button-outline button-positive">
    <a href="www.google.com">fes</a>
</button>

If I use ng-click, it's works fine, but I need href.


Solution

  • Drop the button and decorate the a element with the class names.

    <a href="www.google.com" class="button button-outline button-positive">fes</a>
    

    hope this helps.