Hi,
I have a table, containing a checkbox to select the whole row (or not). This selection is done through JavaScript (JQuery) by setting a class attribute on the row.
function SelectRow(pRowID)
{
$("#"+pRowID).toggleClass("selected");
}
Next step, I want to loop through all selected rows of the table (to extract data from it). Apperently, when I want to loop through the table, there are no rows with the class attribute "selected".
$("table tr.selected").each(function(){
// get the data
});
I finally found out what the problem is... obviously the JQuery script does not work on IE6. Problem is that IE6 is the only browser we have within the company, so it HAS to work on that one. No other browsers are allowed to be installed (that's why it took so long to found out the problem).
So if anyone has a solution to make this work on IE6, I'd be greatly thankfull.
Thanks