Reputation: 626
I am working on my UI with datatable from bootstrap, I think the unknown element has something to do with it.
Where is that element from?
Upvotes: 0
Views: 940
Reputation: 65
element.style means inline style. its quite possible that it might be applied via javascript. please search ID mentioned in JS file
by the way check top comment its says this come after receiving data
Upvotes: 0
Reputation: 60543
element.style
means the style is applied inline to the element, either manually or dynamically via JS
Upvotes: 3
Reputation: 12582
The CSS under element.style
means it is inline style. Inline styles are often set through javascript. Does that answer your question?
Upvotes: 0
Reputation: 17457
That element
is referring to the element currently highlighted and style
attribute for it.
Upvotes: 1