vote up 2 vote down star
1

I need to change an element ID.
(yep, jQuery newbie)

Apparently these don't work:

jQuery(this).prev("li").attr("id")="newid"
jQuery(this).prev("li")="newid"

I found out that I can make it with the following code

jQuery(this).prev("li")show(function() {
    this.id="newid";
});

But that doesn't seem right to me. There must be a better way, no? Also, in case there isn't what other method can I use instead of show/hide or other effects? Obviously I don't want to show/hide or affect the element every time, just to change its id.

(again, jQuery newbie)

Thanks

edit I can't use classes in this case, must be ids

flag

4 Answers

vote up 12 vote down check

Your syntax is incorrect, you should pass the value as the second parameter:

jQuery(this).prev("li").attr("id",newId);
link|flag
I think newId should be in quotes – CarolinaJay65 Dec 8 '08 at 0:49
Don't you need to detach the element from the DOM and replace it with a new element with a new ID in it's place? To avoid breaking the DOM ...? – roosteronacid Dec 8 '08 at 13:09
jQuery takes care of that, roosteronacid. – WaffleMatt Nov 18 at 20:18
vote up 1 vote down

I did something similar with this construct

$('li').each(function () { if (this.id) this.id = this.id+"something" });

link|flag
vote up 7 vote down

What you mean to do is:

jQuery(this).prev("li").attr("id", "newID");

That will set the ID to the new ID

link|flag
vote up 1 vote down

I'm not sure what your goal is, but might it be better to use addClass instead? I mean an objects ID in my opinion should be static and specific to that object. If you are just trying to change it from showing on the page or something like that I would put those details in a class and then add it to the object rather then trying to change it's ID. Again, I'm saying that without understand your underlining goal.

link|flag
I have to use id's as a way to hack into an existing system. no way around it... – yoavf Dec 7 '08 at 17:39
the joys of legacy systems - I understand your pain then. Eran answer is definitely the best then. – Tim K. Dec 7 '08 at 19:44

Your Answer

Get an OpenID
or

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