T5 simple javascript question

2007-04-12 Thread Bruce Petro
I'm hearing that T5 javascript support is not fully implemented - question - is it ready to handle a simple call like this? IE: when the button is pressed, it will first perform some local javascript, then continue on with the submit process. Does that work? If so, I must not have the correct

Re: T5 simple javascript question

2007-04-12 Thread Alexandru Dragomir
Not sure why it didn't work . Maybe try to put your function inside body/. I tried this small sample (javascript function is also inside body ) and it worked : script function test_script() { alert(test); } /script t:form t:submit t:id=test onClick=test_script();/ /t:form