1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
<html> <head> <link rel="stylesheet" type="text/css" href="data:text/css," /> </head> <body> <div> <input id="focusMe"> </div> <script> document.getElementById("focusMe").focus(); </script> <div></div> </body> </html>