Hi
I am calling a Facebook Graph API methods from a custom section I made.
It is very slow and I wish to call it with ajax only when the user asks for it.
I have tried -
jQuery('li').click(function(){
jQuery.ajax({
type :'GET',
url : 'get_album_images.php',
success : function() {
}
});
});
What I can not figure is:
- Were should I put the php file and what id the correct url to it (I need it to be inside the section).
- Is that the right way to do it ?
How can I approach this from a section ?











