Page 1 of 1

WEB event

Posted: Fri Jun 24, 2011 7:42 am
by Natter
Hi, all !

I need to make an event handler for elements WEB of page(IE). Has written so:

el:=oDk:GetElementsByTagName("input")
for st=1 to el:Length
itm:=el:item(st-1)
if itm:Type=="text"
fl:=iif(empty(itm:id), itm:name, itm:id)

itm:onFocus:='My_Prc_1("'+fl+'")'
itm:onClick:='My_Prc_2("'+fl+'")'
endif
next

procedure My_Prc_1(id)
? id
return

procedure My_Prc_2(id)
? id
return

But it doesn't work. In what an error?

Re: WEB event

Posted: Wed Jun 29, 2011 3:21 am
by lailton.webmaster
It's wrong...

Never will work, maybe you can test other way but it no.

:)