I am looking for a way to retrieve the style from an element that has a style set upon it by the style tag.
By using .css() in jquery the style tag can be accessed and modified
for example:
var color = $( this ).css( "background-color" ); $( "#result" ).html( "That div is " + color + "." );