> I managed to get the Element form the Document object. The problem now > is I can't send a click() event on that element like in JavaScript: > > document.getElementById(myid).click() > > Any ideas? You need to look into the DOM createEvent and dispatchEvent APIs. http://www.w3.org/TR/DOM-Level-2-Events/events.html Geoff