Empresas
Empleos
  • Sobre nosotros
  • Soluciones
    • Publicación de vacantes
      Publica tu vacante y recibe candidatos calificados en 48h.
    • Evaluación de candidatos
      500+ pruebas técnicas y psicológicas, más anti-fraude.
    • Headhunting
      Búsqueda ejecutiva a la medida de principio a fin.
    • Nómina + EOR
      Dispersión de nómina y EOR en más de 15 países de LATAM.
  • Precios
  • Empleos

0

229
Vistas
Is it possible for input to be always focused like in Telegram desktop app?

I have a question. Is it possible for input to be always focused like in Telegram desktop app?

enter image description here

about 4 years ago · Juan Pablo Isaza
2 Respuestas
Responde la pregunta

0

If they did it for Telegram desktop then it must be possible, right? Just a matter of how.

There's a few ways to do this.

You can use the autofocus attribute as Ram mentioned in the comment. Simple, but I like to avoid HTML attributes for this kind of DOM manipulation because you're at the mercy of the browser understanding and implementing the attributes.

You can also give it a tabindex 1, but that means you'll have to keep track of your tabindexes for all focusable elements.

You can also write up a quick function under document ready like

$(document).ready(function() {
    $('#InputFieldID').focus();
});

These are only a few solutions I could think of off the top of my head.

about 4 years ago · Juan Pablo Isaza Denunciar

0

The simplest way is this:

document.getElementById("myInput").focus();
    document.getElementById("myInput").addEventListener("blur", (e) => {document.getElementById("myInput").focus()})
<input id="myInput">

I hope I helped you

about 4 years ago · Juan Pablo Isaza Denunciar
Responde la pregunta
Encuentra empleos remotos

¡Descubre la nueva forma de encontrar empleo!

Top de empleos
Top categorías de empleo
Empresas
Publicar vacante Precios Comercial
Legal
Términos y condiciones Política de privacidad
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomiéndame algunas ofertas
Necesito ayuda