I have two types of buttons that I want to use the same code block. Rather than create two event handlers is it possible to reference the buttons by doing something like this:
$(".lb",".da")
I've tried the specific example and it doesn't work but hopefully it'll give you an idea for what I'm aiming at doing.
TIA
Lloyd

OR, since you are looking for either.lbor.da.ANDwould be selecting an element that had both.lband.da(which you do by selecting$('.lb.da'))... – Vegard Larsen Nov 23 '09 at 4:39ANDthis class". He correctly asked how he could select one set of objectsANDanother set, which we have answered below. If anything its anAND/ORscenario. – Doug Neiner Nov 23 '09 at 4:47ORoperator) – Kobi Nov 23 '09 at 5:49