You are viewing limited content. For full access, please sign in.

Question

Question

removing a single checkbox within a table

asked on January 28, 2016

I am looking to remove a checkbox within a table.  I have been able to remove the label attached to the checkbox, but unable to find the correct syntax to remove the checkbox input:

Syntax to remove label

 

$("label[for='Field50(34)-1']").remove();

 

 

Thanks.

0 0

Replies

replied on January 28, 2016

What you have there should work for the checkbox as well, if you just replace "label" with "input"

$("input[for='Field50(34)-1']").remove();

0 0
You are not allowed to follow up in this post.

Sign in to reply to this post.