Change a button or link to trigger a phone app launch/number dial on a mobile screen size. Example below will change link on screens below 700px w.
<?php wp_enqueue_script('jquery'); ?>
<script type="text/javascript">
jQuery(document).ready(function() {
// This will fire when document is ready:
jQuery(window).resize(function() {
// This will fire each time the window is resized:
if(jQuery(window).width() <= 700) {
// if smaller or equal
jQuery('a.call-tell-btn').attr("href", "tel:1234567890");
} else {
}
}).resize(); // This will simulate a resize to trigger the initial run.
});
</script>