Using jaquery to update a form from a partial view?

Using jaquery to update a form from a partial view?

 
I am fairly new to Jquery. I am using ajaxform to submit a form for validation. The form is validated and returned. The code works in firefox and chrome all the time but only the first time in IE. Is there a workaround or solution?
  1. function
    bindForm()

    {

    var options = {

    target:

    '#myForm', // target element(s) to be updated with server response

    success: showResponse // post-submit callback

    };

    // bind form using 'ajaxForm'

    $('#CreateCultureForm').ajaxForm(options);

    }

    function

    showResponse(responseText, statusText, xhr, $form)

    {

    bindForm();

    }

    $(document).ready(function ()

    {

    bindForm();

    });