Demo area • Mobile-only
Click and write the first message!
Source
<span data-whatsapp="5210000000000">Click and write the first message!</span>
wasap.init({
elementCallback: function(el, wasap_send){
el.addEventListener('click', function(e){
e.preventDefault();
var prompt_message = prompt('Say hello!', 'Hello from wasap.js');
if(!prompt_message) return;
wasap_send({ text: prompt_message });
});
}
})