i got some li elements with a custome attribute "type".
whe i try in jquery to get the value of this attribute width jquery like so:
$("li", $list).each(function(){
console.log($(this).attr("type"));
});
i only get the values in firefox but not in IE 7-8
any solutions?
console.log(), which is a firebug construct. Change it toalert()and post an update.