Here is code
<h:outputLink styleClass="button" value="javascript:void(0);">
Text
<f:ajax execute="@form" event="click" listener="#{commentView.saveComment}" render="main_form" />
</h:outputLink>
My commentView bean is @ViewScoped.
Works in Chrome as i expected but in IE only once.
Thanks for any idea.
EDIT:
it behaves like it is ok by changing render="main_form" to render=":main_form"
but the problem continues in eclipse’s browser.
Reason may be stopping script in the middle because of error. Use Developer Tools (F12 key in IE), there is script debugger that can help with bug tracking.