How simulate Enter Key Hit using with both javascript
& jquery
?
I know js has been deprecated but I need it.
I found many threads about simulate KeyPress EVENT, but I am talking about simulate enter key press just like a human do using with js & jquery.
how can I do that?
this is my textBox and I want to hit enter on it by codes :
var texts = document.getElementsByTagName("textarea");
for (var i = 0 ; i < texts.length ; i++)
{
if (texts[i].getAttribute("id") == "my_goal_textBox")
{
alert("hi");
texts[i].value = "hello";
//->Now here i want to hit enter key programatically, how?
}
}