Make a DIY editor yourself
<!DOCTYPE HTML><HTMLLang= "en -us"><Head> <MetaCharSet= "UTF-8"> <title></title> <Scriptsrc= "Http://libs.baidu.com/jquery/1.9.0/jquery.js"></Script> <styletype= "Text/css">#textarea{Border:Solid 1px #ccc;width:300px;Height:200px;padding:4px; }. IMG{cursor:Pointer;} </style></Head><Body> <imgsrc= "./emoji/0x1f4a3.png"alt=""class= "img" /> <imgsrc= "./emoji/0x1f3c3.png"alt=""class= "img" /> <imgsrc= "./emoji/0x1f4af.png"alt=""class= "img" /> <Div> <Divcontenteditable= "true"ID= "textarea"cols= "+"rows= "Ten"></Div> </Div> <Scripttype= "Text/javascript"> $(function(){ $(". IMG"). Click (function(){ vartext=$("#textarea"). html (); varsrc=$( This). attr ("src"); varimg=""+src+"'/>"; $("#textarea"). html (Text+img); }); }); </Script></Body></HTML>
Effect
Make your own simple editable text editor with emoji added