Suggest app installation from Android browser

303 views Asked by At

I need to put an iframe suggesting the installation of an app (which is on Google Play) if my webpage is opened from an Android browser.

How can I do it?

1

There are 1 answers

0
andreasbecker.de On

Check if browser/system is android. The following jQuery plugin may help: https://github.com/gabceb/jquery-browser-plugin

If it is android, set the iframe visible.

jQuery('iframe').show();