Chrome not recognizing multiple selectors?

Chrome not recognizing multiple selectors?


I'm unable to access the bugtracker so apologies if this is a known
issue. Chrome does not appear to be accepting multiple selectors.
Current code is: $("td:nth-child(2), td:nth-child(3)").click(function()
{}, and Chrome is not recognizing the second selector.
Works in Chrome if I change this to:
$("td:nth-child(2)").click(function(){}
$("td:nth-child(3)").click(function(){}
If you use firefox to access http://www.awesomedancemoves.com/jquery_form_test/
, you can click anything under the first two columns of "product name"
and "company name" and action will be taken. However in Chrome, action
is not taken with a click in the second column due to the selector not
being recognized.
Using Jquery 1.3.2 and Chrome 2.0.172.37
Thanks!
Ambert