jojet wrote: > Hi all, > this is my first message here so apologies if I'm breaking protocol! > > I have posted some code at <a href="http://paste2.org/p/7819"> > http://paste2.org/p/7819</a> >
Well, one thing that will speed things up is to use chaining a bit more... $(this).parent().removeClass("premListing").removeClass("freeListing"); The above ensures you're not doing the work of $(this).parent() twice. Likewise: $(this).attr("value").removeAttr('disabled'); That might only give marginal speed boost, but may help a little. Guy