[jQuery] How do I select objects of two different classes?
Hi,
I want to define a click event for objects that either contain the
class "classOne" or "classTwo". But this syntax
$('.classOne .classTwo').click(function() { .. });
isn't working. What's the correct syntax?
Thanks, - Dave