I have an alternate idea..
Since I don't know how to read the cookies or the hash that yahoo uses, I came up with using the getelementbyid and innerhtml properties. This should work but doesn't for some reason? I've been trying and trying but I have come to a dead end. Here is the code:
Code:
<html>
<head>
<script type="text/javascript">
function alertInnerHTML()
{
alert(window.frames.zzz.getElementById("ygmagreet").innerHTML);
}
</script>
</head>
<body>
<iframe name="zzz" src="http://profiles.yahoo.com"></iframe>
<br>
<input type="button" onclick=alertInnerHTML() value="Logged In SN?" />
</body>
</html>
Bookmarks