Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I trying to insert a iframe class from colorbox on dynamically created links from an XML using jQuery and AJAX. I've been trying many things but so far nothing, please let me know if someone can help me.

Here is my code:

$(document).ready(function () {
    $.ajax({
        type: "GET",
        url: "http://vimeo.com/api/v2/iglesiafls/videos.xml",
        dataType: "xml",
        success: function (xml) {
            $(xml).find('video').each(function () {
                var thumb = $(this).find('thumbnail_medium').text();
                var id = $(this).find('id').text();
                var title = $(this).find('title').text();
                var url = $(this).find('url').text();
                $('<div id="video_' + id + '"></div>').html('<p>' + title + '</p><a href="' + url + '"><img src="' + thumb + '"/></a>').appendTo('.content');
            });
        }
    });
});

I need the iframe class on the <a> tag but so far no success at all.

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.