Thanks it works great! I had tried using this but missed that it should be $(this).
On Oct 31, 11:45 am, Mike Alsup <[EMAIL PROTECTED]> wrote:
> > Then my javascript is like this:
>
> > function load_progressives() {
> > $(".progressive").each(function(n) {
> > var wrapset = $(".progressive").slice(n)
> > wrapset.load(wrapset.attr('href'))
> > });
>
> > }
>
> This should work:
>
> function load_progressives() {
> $(".progressive").each(function() {
> $(this).load(this.href);
> });
>
> }

