How can I call a JavaScript function after completion of command button action?
I\'m using JSF 1.0.
Just let JSF conditonally render the desired script.
E.g.
with
private boolean submitted; public void submit() { // ... submitted = true; } public boolean isSubmitted() { return submitted; }