wordpress - Call now button for mobile website -
i've installed wordpress call button plugin , activate phone number not appear on screen of mobile website. if 1 know other plugin purpose i.e place call button or image , user able call mobile carrier when clicked. shortcut code plugin when want add in template file appreciated.
<a href="tel:32334242323">call me</a> you might need use callto: instead of tel: sometimes.
this answer uses jquery replace tel: callto::
if (!jquery.browser.mobile) { jquery('body').on('click', 'a[href^="tel:"]', function() { jquery(this).attr('href', jquery(this).attr('href').replace(/^tel:/, 'callto:')); }); } you should note above snippet posted in june 2012. jquery.browser property has been removed jquery 1.9 , available in migrate plugin.
Comments
Post a Comment