This link will open in de inappbrowser:
adobeDPS.dialogService.open('http://pubbly.nl')
This link will open in Safari:
adobeDPS.dialogService.openExternal('http://pubbly.nl')
If you use jQuery you can do something like this:
// Each anchor tag will be opened in an external browser. $('a').each(function(){ var url = $(this).attr('href'); $(this).on('click', function(e){ e.preventDefault(); adobeDPS.dialogService.openExternal(url); }) })
More explanation about the dialogService can be found here:
Adobe DPS - Library and Store SDK 2.32 : adobeDPS-DialogService : JsDoc Reference