I am trying to submit a form via ajax using:
$(document).ready(function(){
$("#ajax-form").submit(function(){
    $.post(
        "albums.php",
        $("#ajax-form").serialize(),
        function(){
        }
    );
    return false;
});
});
I am posting data to the facebook graph api. I need to send the form text fields and image data to the remote facebook api server. Is this possible? Thanks!
 
     
     
    