Detect when new tweets are loaded using jQuery?

烈酒焚心 提交于 2019-12-06 21:54:30

If, your code like this:

$.each($('p.js-tweet-text'), function() {
    $(this).prepend("Brought to you by ");
});

works on the static bits of the page, or from the command console, then it translates into this waitForKeyElements code:

waitForKeyElements ("p.js-tweet-text", prependToTweet);

function prependToTweet (jNode) {
    jNode.prepend("Brought to you by ");
}

Simple: The selector stays the same, and the .each() code ports directly, except that $(this) is replaced by jNode.


waitForKeyElements handles the AJAXed elements automatically (works on scroll-down and without needing refresh).

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!