Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Is there a way to delete properties of DOM elements? I'm using a widget that upon rendering itself adds tabindex attributes to certain nodes. I'd like to remove them because they cause unwanted visual changes.

I tried the following which does not seem to have any effect (tabindex stays the same):

delete domNode.tabIndex;
domNode.tabIndex = undefined;
share|improve this question
Please show the full code. – Pekka 웃 Aug 9 '10 at 11:43
Also, tabIndex may be a special case because every element will have an internal tabindex, whether one is explicitly set or not. I don't know. – Pekka 웃 Aug 9 '10 at 11:43

1 Answer

up vote 1 down vote accepted

As I recall, you can use the removeAttribute method. So, in your case:

[DomElement].removeAttribute('tabindex');

should do the trick.

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.