i have a script that i use to load some content:
<script>
$(".link_image").click(ajax_request);
function ajax_request() {
$('#placeholder').load("../test.php?id=1234556");
}
</script>
this will load test.php into my div. but what if i want to load a function that is inside test.php:
get_title();
any ideas?
thanks