how facebook show textarea which does not have icon for draging at the bottom-right corner
when i create textarea it shows dragiging icon at bottom left corner
but in facebook website they use textarea i checked it using html inspector.
as this images shows . i want to hide this

and in facebook

<textarea id="textarea"></textarea>
<style type="text/css">
#textarea {
border: 1px #ddd solid;
width: 400px;
height: 120px;
font: 9pt Consolas;
}
</style>
You have to tell the browser not to allow resizing with
resize: none