I need to open the sms application of mobile with prefilled body and recipient by clicking on a URL.
so I wrote this code and it is working fine in firefox. But it is not working in chrome.
 <html>
 <head>
 <script type="text/javascript">
  function f(){ 
   window.location="sms://+12345?body=1234";} 
 </script> 
 </head>
 <body onload="f();">
 </body>
 </html>
Any idea to fix?