I am working on a text editor where I am appending an iframe over textarea for text styling. But my problem is that I have to make the cursor blink on the iframe body when I am trying to open the editor.I am very new to this. Please help.
Asked
Active
Viewed 331 times
1 Answers
0
Try this -
$('#iframeId').focus();
To set focus at end of text, see this -
Use JavaScript to place cursor at end of text in text input element

Community
- 1
- 1

halkujabra
- 2,844
- 3
- 25
- 35
-
Thanks it worked. One more thing, can you please tell me how to blink it at the end of a text? – nitu Apr 24 '14 at 12:00