I have a simple function to add a "last" class to the last li tag in a specific ul
$(".createNewOrder ul li:last").addClass('last'); problem is in IE6 it selects all the li's and adds the class. Anyone come across this before?
I have a simple function to add a "last" class to the last li tag in a specific ul
$(".createNewOrder ul li:last").addClass('last'); problem is in IE6 it selects all the li's and adds the class. Anyone come across this before?