Demo area • Mobile-only
Click and edit the destination phone on the fly
Source
<span data-whatsapp="5210000000000">Click and edit the destination phone on the fly</span>
wasap.init({
elementCallback: function(el, wasap_send){
el.addEventListener('click', function(e){
e.preventDefault();
var prompt_phone = prompt('Enter a number, or use the default', el.dataset.whatsapp);
if(!prompt_phone) return;
wasap_send({ phone: prompt_phone });
});
}
})