Reputation: 55
I want to open google play app in a href. This has been asked before, but the solutions did not work. Can you help me?
<a href="https://play.google.com/store/apps/details?id=...">
Thanks
Upvotes: 0
Views: 8097
Reputation: 51
Only works in mobile app..
<a href="market://details?id=com.example.your.package" target="_blank">Click here</a>
Upvotes: 2
Reputation: 31
You can open the Play Store with following anchor:-
<a href="https://play.google.com/store/apps/details?id=com.example.your.package" target="_blank" rel="external">Click here</a>
Upvotes: 3