you could try something like this (since filter accepts a function):
$('#content [EMAIL PROTECTED]').filter(
function(index){
return (this.alt && this.alt.length > 0);
}
).each(...
dennis.
Olaf Bosch wrote:
Hi All,
where i release a Seloctor of all images with not empty ALT, this select
all with ALT:
$('#content [EMAIL PROTECTED]').each(function(){
i will the function work when ALT not empty
Thanks

