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

I am trying to remove a table row using jQuery like this

function removeTableRow(trId){
    $('#' + trId).remove();
}

However this doesn't work if the id contains a character like "%", "^", "&", ",", etc....

Do you know if there is any work around for this?

share|improve this question
3  
Um, as far as I know, legal HTML IDs cannot contain these characters to begin with... – Tomalak Dec 7 '10 at 23:42
Yes, those are illegal but jquery does struggle with some of the legal ones too – Chris Simpson Dec 7 '10 at 23:45
give a class name and remove it through .classname – kobe Dec 7 '10 at 23:45
6  
Sorry, I can't help it.... Patient: "Doctor, doctor, it hurts when I do this", Doctor: "Then don't do that" – Ron Smith Feb 21 '12 at 22:25
Me neither... Criminal: "Officer, officer, I don't want to go to jail!", Officer: "Then don't commit crimes?" – Ziggy Sep 12 '12 at 4:56

5 Answers

up vote 15 down vote accepted

I believe the reason why can be found here: What is a valid value for id attributes in html

However I'm not so sure about a workaround other than the obvious (change your ids)

share|improve this answer

HTML 4.0 IDs cannot contain these characters and be valid at the same time:

Attribute values of type ID and NAME must begin with a letter in the range A-Z or a-z and may be followed by letters (A-Za-z), digits (0-9), hyphens ("-"), underscores ("_"), colons (":"), and periods ("."). These values are case-sensitive.

If you must, you can try this:

function removeTableRow(trId) {
    $(document.getElementById(trId)).remove();
}

I'd recommend fixing the HTML, though.

share|improve this answer

I wouldn't suggest using those characters in an id string. However if you feel it necessary then you need to use \\ to escape the character in the selector.

Example: http://jsfiddle.net/NuWSp/

<table>
    <tr id="b%b">
        <td>hello</td>
    </tr>
    <tr>
        <td>world</td>
    </tr>
</table>


function removeTableRow(trId){
    $('#' + trId).remove();
}

removeTableRow( "b\\%b" );
share|improve this answer

It's better if it is several rows in many tables to remove them through another attribute such as class or group.

Here is an example of how to remove via group attribute:

$("table tr[group='"+groupname+"']").remove();

I hope this helps.

share|improve this answer

I'm not sure if it will work, but you can try it

var id = "id%#&hh";
$("tr").each(function(){
    if($(this).attr("id") == id){
        $(this).remove();
        return;
    }
});
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.