Hi, For my project, I need to create a form to enter the user's name.
Is it possible to create and use a text box where the user can enter his text?
Of course, using coding for that.
Thanks
Hi, For my project, I need to create a form to enter the user's name.
Is it possible to create and use a text box where the user can enter his text?
Of course, using coding for that.
Thanks
Is there somebody?
Hello Alex, of course you can. Just use a smart object to place some custom HTML and javascript code. You can save the entered value in localStorage.
Thanks! Super!
All good, but this method doesn't work for epub. Could you tell me where to look for a solution?
It depends on the EPUB reader. Some of them, e.g. iBooks if I recall correctly, have problems showing the keyboard with form inputs. You could try using contenteditable
attribute https://developer.mozilla.org/en-US/docs/Web/Guide/HTML/Editable_content
Thanks! I’ll try, this will be interesting.
Super!!! This method works perfectly! I'm starting to test!
Block «text», coding editor of the text: <p contenteditable = "true">Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>
It’s realy working.