whatsapp button

by oktaviardi pratama

HTML

<div id="body">

</div>
<a href="https://api.whatsapp.com/send?phone=whatsappphonenumber&text=urlencodedtext">tes</a>

CSS

body {
  background:grey;
}
a.btn-wa {
  position: fixed;
  z-index:10;
  right:10px;
  bottom:10px;
}

JavaScript

$(document).ready(function(){
	var tag = "<a class='btn-wa' href='https://api.whatsapp.com/send?phone=+62811888659&text=I contact from website :&nbsp;'><img src='https://peduligerejakatolik.org/wp-content/uploads/2018/05/wa.png' width='70'></a>";
  $('body').append(tag);

});