Amshu
Amshu

Reputation: 127

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?

Upvotes: 2

Views: 1132

Answers (2)

Sagar Hani
Sagar Hani

Reputation: 166

"sms:{{data.mobile1}}"

Should be within quotes.

For more : https://docs.angularjs.org/api/ng/directive/ngHref

Upvotes: 1

Vivz
Vivz

Reputation: 6630

You have to bind to ng-href the following way

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

Upvotes: 2

Related Questions