How can I find the style attribute of a particular ID element?
E.g
desc = "#thisID";
desc_style = desc.attr('style');
console.log(desc_style);
Edit for clarification, above is an example.
Desc variable holds string #thisID.
How do I find the style attribute of that ID?