No More Posting New Topics!

If you have a question or an issue, please start a thread in our Github Discussions Forum.
This forum is closed for new threads/ topics.

Navigation

    Quasar Framework

    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    1. Home
    2. Winexcel
    W
    • Profile
    • Following 0
    • Followers 0
    • Topics 1
    • Posts 2
    • Best 0
    • Groups 0

    Winexcel

    @Winexcel

    0
    Reputation
    1
    Profile views
    2
    Posts
    0
    Followers
    0
    Following
    Joined Last Online

    Winexcel Follow

    Latest posts made by Winexcel

    • RE: InAppBrowser plugin doesn't work

      when i removed cordova-plugin-inappbrowser after the installation openURL function doesn’t work

      cordova plugin remove cordova-plugin-inappbrowser
      
      posted in Help
      W
      Winexcel
    • InAppBrowser plugin doesn't work

      Hi, I try to use InAppBrowser plugin with cordova, i want to open internal browser in my app, so i use this to achieve my aim:
      Firstly, i installed the plugin by typing this

      cordova plugin add cordova-plugin-inappbrowser
      

      Then i wrote this method which i call by button click

      visitMyWebsite() {
           //cordova.InAppBrowser.open('http://apache.org', '_blank', 'location=yes'); // this works
           openURL('https://google.com'); // this doesn't work
        }
      

      If i call cordova.InAppBrowser.open directly this works, but not happens if i call openURL after i installed this plugin, where i was wrong and how can i fix it?

      posted in Help
      W
      Winexcel