Hello,
I have created an animation that shows a search input box when clicking on a search icon.
I would like to end the animation by focusing on the input text element, so that users can type without having to select the input text element manually before.
I’ve seen solutions using custom javascript (e.g.
$('.myicon').click(function () { $('#myinputtext').focus(); }
); but I would like to avoid this as it is a symbol that is used on multiple pages.
Is there a way to do add a focus action in an animation?
Thanks