[SalesForce] reRender outputPanel from javascript function in visualforce

I want to reRender "TopPanel" from javascript, is there any way to do this in visualforce ?

<apex:outputPanel id="TopPanel">
<apex:outputPanel>

<script type="text/javascript">
function CreateTabs()
{
    //rerenderCode for TopPanel
}
</script>

Best Answer

This is what an actionFunction is for

<apex:actionFunction name="rerenderTopPanel" rerender="TopPanel" />
<apex:outputPanel id="TopPanel">
</apex:outputPanel>

<script type="text/javascript">
    function createTabs() {
        rerenderTopPanel();
    }
</script>
Related Topic