I want to add smiles to the div but problem is it is not adding in between two letters or when I point my cursor in between it is adding at last please help.I want to add the emoji in between.
<!DOCTYPE html>
<head>
<style type="text/css">
#text { body {
font-family: Helvetica, sans-serif;
color: #333;
}
#text_wrapper {
margin: 40px;
}
outline: none;
margin: 10px;
min-height:200px;
}
</style>
</head>
<html>
<body>
<script>
function myFunction() {
var x = document.createElement("IMG");
x.setAttribute("src", "1f602.png");
x.setAttribute("width", "20");
document.body.appendChild(x);
var c=document.getElementById("text");
c.appendChild(x);
}
</script>
<div id="text" contentEditable="true" >
</div>
<button onclick="myFunction()" >Emoji </button>
</body>
</html>