I have a javascript function that I use on forms with the onBlur event. I now
want to use it for a complete table. <cfoutput query='getNames'> <cfquery
name='updateName' datasource='phones' dbtype='ODBC'> Update Names set
Nam_Street = 'proper(#getNames.Nam_Street#)' WHERE names_id =
'#getNames.names_id#' </cfquery> </cfoutput> Of course this will not work. I
can not find an event to invoke the 'proper' function. and I wasn't successful
in converting the fuinction to a UDF,