Sometimes, you need to see what properties does that object have and what values are assigned to them. This snippet does that.
Displaying all object properties
function displayProperties(obj)
{
var list="";
for(var p in obj)
list += p + " : " + obj[p] + "<br>";
document.write(list);
}
example :
<!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>
<title>Untitled Page</title>
<script type="text/javascript">
function x()
{
var list ="";
for(var p in window.event.srcElement)
list += p + " : " + window.event.srcElement[p] + "<br>";
document.write(list);
}
</script>
</head>
<body>
<a href="#" onclick="x()" >deneme</a>
</body>
</html>
Be a part of the DaniWeb community
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.