Search code examples
angularjsphonegap

send sms to a number using angularjs


I have used this code to send sms in my mobile app using angularjs. <a ng-href={{'sms:'+data.mobile1}}><i class="material-icons">message</i></a> But its not working. Can someone help me?


Solution

  • You have to bind to ng-href the following way

    ng-href="sms:{{data.mobile1}}"