Сообщество IT-специалистов
Ответы на любые вопросы об IT
Профессиональное развитие в IT
Удаленная работа для IT-специалистов
<!DOCTYPE html> <html> <head> <script> $("#button").click(function() { $('#input').focus(); }); </script> </head> <body> <button id="button">Кнопка</button> <input id="input"> </body> </html>
<script src="https://code.jquery.com/jquery-3.4.1.min.js"></script> <script> jQuery(function($) { $("#button").click(function() { $('#input').focus(); }); }) </script>