I want to know that would this function will work in ie 6, I currently can have ie6 on my machine
$(function(){
$('#slides-thumbs li:first a').each(function(){
$(this).removeAttr('rel');
})
})
My concern is :first
|
feedback
|
|
Yes it will work with no problems. jQuery is designed to work cross-browser, and IE6 is no exception. Many of the selectors you can use with jQuery are borrowed from CSS3, so if you were to use them in your CSS, IE6 would then have problems. However, For example, the | |||
|
feedback
|