I have the following piece of code in my project’s index.html
<div class="list"> <a ng-repeat="entry in entries" class="item" ng-click="browse(entry.link)"> <b>{{entry.title}}</b><br> <span ng-bind-html="entry.contentSnippet"></span> </a>
I want to make the urls open within the app using Inappbrowser plugin. I need to use a window.open instance using location=no
Please give me an example. Thanks.