<html>
<head>
<style>
#menu{
color :red;
}
</style>
</head>
<body>
<div id="menu">
ABCXTZ
</div>
</body>
<script>
a = document.getElementById('menu');
alert(a.style.color);
</script>
</html
What i retrive just is a empty box.
What i retrive just is a empty box.
| ||||
|
feedback
|
|
To get the computed style you have to go a bit of a different route, like this:
You can give it a try here, getting | |||
|
feedback
|