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?