Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

OnBlur Events

Status
Not open for further replies.

bsuribabu

Programmer
Apr 4, 2002
25
IN
Hi Guys,

I have one problem where i require u r kind attention.

I have one Input section like

<input name=&quot;test&quot; type = &quot;text&quot; OnBlur=&quot;test()&quot;/>

In one of my java script function I am doing like below

function x()
{
test.onblur = y;
}

Here what it is doing it is overiding the Onblur Event means it is calling the y function and skipping the test(),
But I want both to be executed one by one .

Pls help me

Suri
 
function x()
{
test.onblur = &quot;test()&quot;;
test.onblur = y;
}


Programming today is a race between software engineers striving to build better and bigger idiot-proof programs, and the Universe trying to produce bigger and better idiots. So far, the Universe is winning. - Rich Cook
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top