0

Possible Duplicate:
How to trigger event in javascript

Such as a click event, or an onmouseover event. Is there some type of way to initiate all kinds of events programmatically, and how?

Community
  • 1
  • 1
David G
  • 94,763
  • 41
  • 167
  • 253

1 Answers1

1

Basically like that document.getElementById('searchSubmit').click();

Wojciech Bednarski
  • 6,033
  • 9
  • 49
  • 73