script >
var t= document .getElementById( "t" );
t.onblur = function () {
t.blur();
}
t.focus();
< input type ="text" id ="t" />
< script >
var t= document .getElementById( "t" );
t.onblur = function () {
t.blur();
}
t.focus();
</ script >
* This source code was highlighted with Source Code Highlighter .
Source: https://habr.com/ru/post/51745/
All Articles