[jQuery] input fields don't work after using $load()
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.