I have built a website which will be used at a brand launch event as the user dashboard. Each user will get an android tablet and the browser with the website will be locked as the main screen.
From there I have 2 links which they need to click on to access: Aurasma, and a QR code scanner.
I am wondering if there is a simple, clean solution for when they click the logo image that the app will launch on their tablet.I have tried all the other solutions and jQuery plug in and googled as much as I could but nothing worked.
<div class="row">
<div class="col-lg-2 col-md-2 col-sm-2 text-center">
<p>Aurasma Scanner</p><hr>
<img class="img-responsive" src="img/aurasma_logo.png"></img>
</div>
<div class="col-lg-2 col-md-2 col-sm-2 text-center">
<p>Qr Code Scanner</p><hr>
<a href="https://play.google.com/store/apps/details?id=me.scan.android.client&hl=en" target="_blank"><img class="img-responsive" src="img/qr_logo.png"></img></a>
</div>
Thank you for your help.