0

I'm working on mobile project using asp.net mvc4 and I would like to have a button that allows to make a call on smartphones, how to create such button?

krknapik14
  • 31
  • 6

1 Answers1

0

Usually, a link that allows to call from smartphone is looks like that :

<a href="tel:+33242125212">Call</a>

If you want buttons, you can add a button class to make it look like a button.

hemma731
  • 148
  • 1
  • 1
  • 8