i have 4 links and i need to change the href attribute in a rel attribute. i know i cannot do it so i'm trying to get the data from the href attribute, setting a new attribute (rel), inserting the data inside it and then removing the href attibute.

basically i'm doing this:

$('div#menu ul li a').each(function(){
        var lin = $(this).attr('href');
        $('div#menu ul li a').attr('rel',lin);
        $(this).removeAttr('href');


        })
    })

it works but it sets the same rel data in every link i have.

any help?

link|improve this question
1  
$('div#menu ul li a') === $(this) inside your anonymous function, and you've two sets of closing braces and parenthesis. – Greg K Apr 16 '10 at 15:51
i didn't even notice the extra "})". man... i need to eat or sleep. – David Murdoch Apr 16 '10 at 15:54
feedback

3 Answers

Try

$('div#menu ul li a').each(function(){
    var lin = $(this).attr('href');
    $(this).attr('rel',lin);
    $(this).removeAttr('href');


    })
})

Haven't actually ran the code...but that looks like it should do the trick.

link|improve this answer
looks like I've been beaten! +1 to you. – David Murdoch Apr 16 '10 at 15:52
feedback

Change:

$('div#menu ul li a').attr('rel',lin);

To:

$(this).attr('rel',lin);
link|improve this answer
perfect! thnx :) – junray Apr 16 '10 at 16:01
feedback

You are probably doing "it" wrong. (meaning there is a better way to do what you are attempting).

but to just answer your question:

$('#menu ul li a').each(function(){
    var lin = $(this).attr('href');
    $(this).attr('rel',lin).removeAttr('href');
});
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.