WEB event

Post Reply
Natter
Posts: 524
Joined: Mon May 14, 2007 9:49 am

WEB event

Post 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?
lailton.webmaster
Posts: 603
Joined: Sun May 04, 2008 8:44 pm

Re: WEB event

Post by lailton.webmaster »

It's wrong...

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

:)
Post Reply