I created a simple html page that when you open it, it will automatically open your default mail application and fill in the To:, Subject: and clear the body of any default data. This works fine on my desktop and my android phone, but I notice that on the phone it wants to default to the HTML Viewer application which does not fire the jquery in the file. Then I notice it will not ask to use either chrome or the default browser. I put firefox on my phone and it allowed me to set that as my default browser. My question is can I put something in my code that will either allow me to choose a default browser (chrome or FF) or force a browser to be the default browser? I read up a little on Android's API Intent filters but I am not sure if this is the right path and if I can actually accomplish this in my simple html page.
<!DOCTYPE HTML>
<HTML>
<HEAD>
<TITLE>EMAIL: Test</TITLE>
<META http-equiv="X-UA-Compatible" content="IE=edge">
<META http-equiv='cache-control' content='no-cache'>
<META http-equiv='expires' content='0'>
<META http-equiv='pragma' content='no-cache'>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
</HEAD>
<BODY>
</BODY>
<script type="text/javascript">
$(document).ready(function(){
document.location.href="mailto:test123@gmail.com?subject=Download&body=%20";
}); // document.ready
</script>
</HTML>