The short story is our CMS limits us to using solely html/js. I'm creating a dynamic graph page that has a lot of data that will be updated monthly. There is a separate php form on the server the staff member will fill out, that content is stored in the database, and there's another php file that displays the information. Jquery/Ajax needs to pull that info from the outside php page, which I've done on one other project. This difference this time is that I need to target specific sections of code to pull in, because the results will be going into a javascript variable for use in populating a graph.
With me so far? What I need jquery/ajax to do is target specific div ID's on the populating php page so I can direct it to the proper js variable.
I've looked at jston, but am not strong with JS, and thus that looks like Greek. Thoughts, Ideas, Suggestions?
EDIT:
I've tried this code:
$('#hiddenDiv').load('test.php #newdata');
Which imported nothing, even though there is text on the test.php page with a div with the id "newdata".