I'm developing a website and I want the main div to be a fixed height with a jquery vertical scrollbar for content that overflows that area. For this, I'm using the plugin jScrollPane.

However, I want to load this content dynamically from an RSS feed, using the plugin zRSSFeed (I'm a new user so I can't post 2 links!).

In order to do this I need to call the rssfeed function like this:

$("#feed").rssfeed(....feed url and options);

I then want to apply jScrollPane to a div that is dynamically created by calling the rssfeed function. However each time I try to find the jQuery element, it does not yet exist.

As far as I know rssfeed does not include a callback function that I could use, and I have tried to function chain jScrollPane after calling rssfeed, but that did not work either.

Any suggestions??

link|improve this question

50% accept rate
I would recommend firefox with the firebug plugin if you don't already have it. It allows debugging of javascript. – Timothy Ruhle Dec 8 '10 at 23:20
Can you post some sample code of what you've tried? – Richard Marskell - Drackir Dec 8 '10 at 23:28
This is what I was trying to do, and I was using Firebug. I also tried to add the .children() function to the chain in order to find the inner div that was created by rssfeed, but to no avail $("#feed").rssfeed('news.search.yahoo.com/news/…;, { limit: 5 }).jScrollPane(); – delvec Dec 8 '10 at 23:50
feedback

2 Answers

up vote 1 down vote accepted

Have to agree with David that it leaves a lot to wish for, but alternatively, you could just implement a callback handler yourself to the class:

In the same place as David suggested, right after the $(e).html(html); add the following:

if(options.complete!=null) { options.complete(); }

Then, in your html:

$(document).ready(function () {
  $('#feed').rssfeed('http://myrssfeedurl', {
    limit: 5,
    complete: function() { $("#feed div").jScrollPane(); }
  });
});
link|improve this answer
devrooms, this is exactly what I would want to do. I don't have time right now but I will tinker with the plugin itself to see if I can add the callback functionality. – delvec Dec 8 '10 at 23:47
That works too, but why check for null? I would do if (typeof options.complete == 'function') { options.complete.call(e); } – David Dec 9 '10 at 6:06
feedback

I had a quick look at the zRSSFeed plugin and the code leaves a lot to wish for... however, you might be able to add your own trigger in the end of the _callback function, just after the $(e).html(html); at the very end of the script. Try adding:

$(e).trigger('rss');

And then in your main program you can listen for the rss event on the element, like:

$('#feed').bind('rss', function() {
    // the html should now be injected
}).rssfeed( '/stuff.xml' );

It's not pretty but might be a quick-fix if that's what you need here.

link|improve this answer
yea, the plugin isn't fully featured – Timothy Ruhle Dec 8 '10 at 23:43
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.