I build an APP with phonegap. I have added a custom settings menu, with ul li tags, One of the tag needs to be a link, so users can click and go to PLay store to rate the APP. I am not sure how to achieve this.
<ul>
<li><a href="javascript: void(0);" class="rate_app">Rate App</a></li>
<li><a href="javascript: void(0);" class="exit_app">Exit APP</a></li>
</ul>
$("li a.rate_app").on('click', function() {
this.href="https://play.google.com/store/apps/details?
id=com.project.projectXXX" //I need this link?
});
Any Ideas?
Thanks