I need to pass the tag data to the function and read it in that function , I tried to pass the tag via "this" , i could change some style elements but i couldn't read the style data there. What is the problem
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>JS</title>
<script>
function paint(tab){
window.alert(tab.style.backgroundColor); // It can't show current color
tab.style.backgroundColor="#000000";
}
</script>
<style>
div.vtab {
background-color:#ff0000;
height: 80px;
left: 20px;
position: absolute;
width: 80px;
cursor:pointer;
}
</style>
</head>
<body>
<div onclick="javascript:paint(this)" class="vtab" ></div>
</body>
</html>