Hi I want to add Some buttons over the inAppbrowser in my android application how to add here is my code
$scope.customInappbrowser = function() {
$cordovaInAppBrowser.open('https://www.google.co.in', '_blank', options)
.then(function(event) {
// success
})
.catch(function(event) {
// error
});
// window.open(v, "_system", "location=yes");
}
$scope.customInappbrowser();