Failed to customize the browser default title position of a input field using Javascript.
function myFunction() {
document.getElementById("myP").title = "Title Top the input field";
//document.getElementById("myP").title.position= 'top'; //Wrong
}
<!DOCTYPE html>
<html>
<body>
<input id="myP" title="Title below the input field" />
<button onclick="myFunction()">Try it</button>
</body>
</html>