Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How can you remove the attribute id by jQeury?

My jQuery code

jQuery('a.no_flag_question').live('click', function(){
    jQuery.post('/codes/handlers/no_flag_question.php', 
        { question_id: jQuery(this).attr('rel') });
            $(".question_box").removeClass("yellow");   // problem here
            alert ("Question is now not spam.");
});

This code should remove the following yellow -attribute in

<div id="yellow" class="question_box">

However, this does not work. The reason is very likely the function removeClass. I apparently use wrong function, since I want to use the ID.

share|improve this question
Thank you for your answers! – Masi Aug 23 '09 at 3:43
Why are you removing an identifier? Seems like you are doing some strange business logic. – epascarello Aug 23 '09 at 13:41

2 Answers

up vote 12 down vote accepted
$('.question_box').removeAttr('id')

More info at http://docs.jquery.com/Attributes/removeAttr

share|improve this answer

removeClass only exists because class is a multi-valued attribute... if you have a <div class="one two three"> and you call .removeClass("two") on it, it should end up with class="one three". addClass and removeClass exist to save you from doing all that work yourself. id isn't special in that way, so you just access it with attr.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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