[jQuery] Binding to multiple items with one call

[jQuery] Binding to multiple items with one call

This doesn't seem to be working:
bindBlur = function(){
$j('#person', '#assigned').blur(function() { sendok=true;
alert(sendok);} );
}
But this does:
bindBlur = function(){
$j('#person').blur(function() { sendok=true; alert(sendok);} );
}
Do I have to do them all individually or am I just putting those IDs in
incorrectly?
_______________________________________________
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/