Try the core jQuery function: jQuery(expression, [context])
http://docs.jquery.com/Core/jQuery#expressioncontext

$('td:first', row).css('color', 'red');

MaurĂ­cio


Hi.

I am new with jQuery, and i want to know if its possible to do the
follow.

var row = $(".flexigrid .bDiv #socios .trSelected:first");
$(row + " td:first").css("color", "red");

Or something like that.

I mean.

I have a row selected in jQuery. Now I want to go for each column, of
this row without do this
var col0 = $(".flexigrid .bDiv #socios .trSelected:first td:eq(0));

Thanks

Reply via email to