i used required tag to do validation in my text area, without entering any value if i click on submit button its displaying default tool tip at center of text area and it shows "please fill out this field". The question is how i can change the position of the tooltip(like to right,to left) and how can i change the title of the tooltip (some thing like "enter some text").
the code i tried is :
<script>
function storevalue(){
var b =document.getElementById("area").value;
alert(b);
}
</script>
<body>
<form onsubmit="storevalue()">
<textarea id="area" name="suggestion" style="width: 400px; height: 105px;" type="text" required ></textarea>
<input type="submit" />
</form>`enter code here`
</body>