as my boss loves the bbc site (www.bbc.com), does anyone have any suggestions for creating the functionality for controlling how many items are in the list using the plus and minus buttons? When clicking plus it will add more items, when clicking minus it wil remove the bottom item.

It looks like this is done using Jquery, anyone have any suggestions?

Thanks

link|improve this question

66% accept rate
what have you tried so far? – corroded May 26 '11 at 15:18
what plus/ minus buttons are you talking about? – hunter May 26 '11 at 15:19
@hunter: Check bbc.co.uk - and then I'm sure he means the +/- near "More Top Stories". – thirtydot May 26 '11 at 15:22
feedback

1 Answer

up vote 4 down vote accepted

BBC loads all the items and just marks some of them as hidden using a .hide CSS class. It's not very sophisticated. So your jQuery will go something like:

Plus

$("#myDiv li.hide:first").removeClass("hide");

Minus

$("#myDiv li:not(.hide):last").addClass("hide");

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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