开发者

Problem with applying jQuery to an element which has been created by jQuery

Here's my code:

$("#ticker-wrapper").rssfeed("http://news.hse.gov.uk/feed/", {
    limit: 5,
    linktarget: '_blank',
    titletag: 'p',
    snippet: false,
    header: false,
    date: false,
    content: false
});

$('#js-news').ticker({
    controls: false,
    titleText: ''
});

Basically, a rssfeed is placed inside the wrapper, I then want .ticker to add a ticker effect to the items pulled through by the .rssfeed.

The problem seems to be that the .rssfeed creates the id #js-news (which is where I want to apply the .ticker). Then it seems the .ticker gets fired before #js-news has been created. Effectively it seems to be trying to apply .ticker to the element which hasn't yet been created which then results in nothing appearing.

I've been looking into jQuery .live() and I can get all the code working on a click command. But I need to create the rss feed and apply the ticker when the page loads. Not quite sure what to do?

------ Edit ------

ah ha!

Seems it works now I've moved the main .rssfeed bulk into the html (out of the .ready) and rewriting the ticker code:

var tickerTryCount = 0;
function addTicker() {
if (tickerTryCount < 5) {
    if ($('#js-news').size() > 0) {
        $('#js-news').ticker({
            controls: false,
            titleText: ''
        });
    } else {
        tic开发者_JAVA百科kerTryCount++;
        setTimeout(addTicker, 1000);
    }
}
}


Call the ticker() on ajaxStop()

$("#ticker-wrapper")
    .rssfeed("http://news.hse.gov.uk/feed/", {
        limit: 5,
        linktarget: '_blank',
        titletag: 'p',
        snippet: false,
        header: false,
        date: false,
        content: false
    })
.ajaxStop(function() {
    $('#js-news').ticker({controls: false, titleText: '' });
        });


ah ha!

Seems it works now I've moved the main .rssfeed bulk into the html (out of the .ready) and rewriting the ticker code:

var tickerTryCount = 0;
function addTicker() {
if (tickerTryCount < 5) {
if ($('#js-news').size() > 0) {
    $('#js-news').ticker({
        controls: false,
        titleText: ''
    });
} else {
    tickerTryCount++;
    setTimeout(addTicker, 1000);
}
}
}
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜