hi,
im trying to figure out how to trigger a control's event from a javascript function (without touching the actual control itself)
say i have this textbox...
<input type="text" value="" id="my_textbox" onclick="alert('!');" />
then say i was trying to call its onclick event via javascript...
function TriggerTextboxOnClick()
{
//... call the onclick event of 'my_textbox'
}
any help would be greatly appreciated as this is doing my nut - thanks
p.s. im not actually trying to pop-up an alert box, ive simplified it for illustrations sake
-- LM