Reputation: 127
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
Reputation: 166
"sms:{{data.mobile1}}"
Should be within quotes.
For more : https://docs.angularjs.org/api/ng/directive/ngHref
Upvotes: 1
Reputation: 6630
You have to bind to ng-href
the following way
ng-href="sms:{{data.mobile1}}"
Upvotes: 2