Href inside ionic list item cant be clicked

I have this simple list :

<ion-view>
    <ion-content>
        <ul class="list">
             <li class="item">
                <a href="http://google.com">
                    <img src="img/ionic.png">
                    <p>Forum</p>
                </a>
            </li> 

However the href is not fired when the item clicked.

What should i do to make this simple task working?

Thanks a lot for your help

Have you added whitelist plugins and checked content access security ?

see



for more details debug your ionic application on chrome

Thanks for the reply.

I have used the whitelist plugin.

There is no error when i run it on chrome, i think the problem is the <a> tag is not clicked.