I have a page calling another page using :
$("#Go").click(function () {
$("#view").load("test.php");
refreshId = setInterval(function() {
$("#view").load("test.php"); }, 1000);
});
This works fine.
The question I have is can test.php use jquery to update a checkbox on the parent page ?