Read: Why do my events stop working after an AJAX request? http://docs.jquery.com/Frequently_Asked_Questions#Why_do_my_events_stop_working_after_an_AJAX_request.3F
On Jul 19, 8:31 pm, James <jrbrayjr2...@gmail.com> wrote: > I am using the $(load) function to populate a div in my HTML with > form. The code snippets look something like this. > > <html> > ... > ... > <div id="formArea"></div> > ... > ... > </html> > > $('#formArea').load('content/myForm.txt'); > > The form loads fine, but the input controls no longer work once the > form is loaded using this AJAX technique. Does anyone know what the > problem might be? > > Thanks.