Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6987929
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T19:00:11+00:00 2026-05-27T19:00:11+00:00

I was wondering if anyone could help clear up this issue I am having.

  • 0

I was wondering if anyone could help clear up this issue I am having.

I have been trying all morning to get a Facebook share button to work with dynamic parameters unique to the video that was being played on the page at the time.

I think the following should work but I am getting the error: share_title is not defined.

I then tried setting the contents of a div to the contents of the ajax response and then setting the params variable to the contents of that div so that the variables would be accessible within the FB.ui function but that didn’t seem to work either.

Does anyone have any ideas?

$('.share_button').live('click', function(e){
    $('#player').fadeOut('slow');
    var share_id = $(this).attr('id');

    $.ajax({
        type: 'GET',
        url: '/youtube.php',
        data: 'share='+ share_id,
        success: function(data) {
            //$('#params').html(data);
            //params = $('#params').html();
            param = data.split('--');
            share_title = param[0];
            share_description = param[1];
            share_picture = param[2];
            share_views = param[3];
        }
    });
    e.preventDefault();
    FB.ui(
    {       
        method: 'feed',
        name: share_title,
        link: 'http://www.facebook.com',
        picture: share_picture,
        caption: share_views,
        description: share_description
    },
    function(response) {
        $('#player').show('slow');     
    });
});
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-27T19:00:12+00:00Added an answer on May 27, 2026 at 7:00 pm

    You need to put the FB.ui call in the AJAX callback.

    $('.share_button').live('click', function(e) {
        $('#player').fadeOut('slow');
        var share_id = $(this).attr('id');
    
        $.ajax({
            type: 'GET',
            url: '/youtube.php',
            data: 'share=' + share_id,
            success: function(data) {
                //$('#params').html(data);
                //params = $('#params').html();
                param = data.split('--');
                share_title = param[0];
                share_description = param[1];
                share_picture = param[2];
                share_views = param[3];
    
                FB.ui({
                    method: 'feed',
                    name: share_title,
                    link: 'http://www.facebook.com',
                    picture: share_picture,
                    caption: share_views,
                    description: share_description
                }, function(response) {
                    $('#player').show('slow');
                });
            }
        });
        e.preventDefault();
    });
    

    AJAX is asynchronous. The call to $.ajax returns before the HTTP request has completed (i.e. before the success callback has executed), and the program flow continues. This means that, in this situation;

    1. Your initiating the AJAX request via $.ajax
    2. You’re calling e.preventDefault()
    3. You’re calling FB.ui
    4. Sometime later, the AJAX request completes, and the share_title is populated.

    FYI, you should also declare you’re variables; otherwise you’re making them implicit globals, which are bad;

    $('.share_button').live('click', function(e) {
        $('#player').fadeOut('slow');
        var share_id = $(this).attr('id');
        var share_title;
        var share_... // do all your other share_*'s here as well.
    
        $.ajax({
            type: 'GET',
            url: '/youtube.php',
            data: 'share=' + share_id,
            success: function(data) {
                //$('#params').html(data);
                //params = $('#params').html();
                param = data.split('--');
                share_title = param[0];
                share_description = param[1];
                share_picture = param[2];
                share_views = param[3];
    
                FB.ui({
                    method: 'feed',
                    name: share_title,
                    link: 'http://www.facebook.com',
                    picture: share_picture,
                    caption: share_views,
                    description: share_description
                }, function(response) {
                    $('#player').show('slow');
                });
            }
        });
        e.preventDefault();
    });
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I was wondering if anyone could help me with this problem i'm having. I
I was wondering if anyone could help me with this. I have to create
I was wondering if anyone could help me with this problem: I have to
I was wondering if anyone could help me out, I'm trying to find a
I was wondering if anyone could help me get the leading zero to show
Hey guys I was wondering if anyone could help me with an issue im
Just wondering if anyone could help me with this. I'm new to actionscript, and
I was wondering if anyone could help me with an issue with Eclipse. Since
I was wondering if anyone could help me with the following issue. On our
I was wondering if anyone could help me with getting this working. I'm using

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.