Friday, December 4, 2009

Attach event to a field on crmForm

You can attach an event to any field on the crmForm using the code below.

crmForm.all.name.attachEvent('onmouseover',test);

function test(){
alert('the scripting goes on this line')
}

No comments:

Post a Comment