On Tue, Jan 19, 2010 at 1:39 PM, Mircea <i...@amsterdamsat.com> wrote: > I have one slider that have to resize font-size on 4 different > elements. At this time it works on all 4 of them (span) but I would > like to make it work for any individual element that is selected.
Have your selector add/remove a class, say, "resizeable", then modify the slider to only manipulate elements with that class, a la: onChanging: function(percentage, e) { $(".resizeable").css('font-size', maxFont * percentage); Nathan