I created a JS action with a simple function
And then I created a simple radiobox. On Events tab I selected On Change, Value empty, Action Function, and Element identifier testFunc. I was expecting that the function would be called when I select any option on radiobox, but nothing is happening. So, how do you call a JS function from Events tab?
function testFunc() { alert('teste'); }
And then I created a simple radiobox. On Events tab I selected On Change, Value empty, Action Function, and Element identifier testFunc. I was expecting that the function would be called when I select any option on radiobox, but nothing is happening. So, how do you call a JS function from Events tab?