I am trying to learn jQuery and Ajax. If I understand well, it is not possible to store the value of an input if that input is loaded. Is that correct?
index.php:
$("#content").load("proces.php");
$(':button').click(function() {
var dynamicValue = $('#inputfield').val();
alert (dynamicValue);
});
process.php:
<input type="text" id="inputfield" />