I need a solution for the following problem.
I am using jquery odd selector to add a css to every odd item in a asp:repeater.
$(".item:odd").attr("class", "item odd");
After I do an ajax call (from updatepanel) to go to the next page in the repeater the classes aren't added to the items on the next page.
$(document).ajaxComplete doesn't seem to do the trick.
Any ideas?
Many thanks,
Arnoud