Unexpected token >
I wrote this code
$('table[name="resultsGrid"]tbodytr:even').each(function() {
$(this).addClass('even');
});
and recieved error
Uncaught SyntaxError: Unexpected token
$('table[name="resultsGrid"] tbody tr:even').each(function() {
$(this).addClass('even');
});
worked.
In other programs it's worked http://jsfiddle.net/aWE6Y/2/. Could you help me