Can I select two elements with Jquery at the one time?
For example I tried this but it only selected the first element:
$('.loginStaff' || '.loginClient').click(function(){
$('.login_form').toggle();
});
I also tried but this only selected the last element:
$('.loginStaff' && '.loginClient').click(function(){
$('.login_form').toggle();
});
Thanks!!! Global