I include some content in php/symfony like this:
<div id='content'>
<?php include_partial( 'course/content.php', array("param1" => "1", "param2" => "2") ); ?>
</div>
Now I want to update this content again via AJAX using jQuery.
How can I update content div again by calling course/content.php using jQuery on some jQuery event?
Thanks
Look at the .load event or else .get:
Or a .get example: