CodeHQ

Archive for August, 2018

|

Remove spaces in tel href links

Wednesday, August 29th, 2018

/* Remove all spaces in tel: href links so click to call works */
$('a[href^="tel:"]').attr('href', function(_,v){
    return v.replace(/\(0\)|\s+/g,'')
});

Tags: , , , , , ,
Posted in jQuery | No Comments »