Hi,
Are you talking about javascript DOM?
What exactly are you trying to access you can access and manipulate html for example
Code:
<script>
function changeDivContent()
{
document.getById['myDiv'].innerHTML="new text";
}
</script>
<div id="myDiv">
this you can change
</div>
<button onClick="changeDivContent()"></button>
with this code you will change the text inside the div
Is this what you are trying to do? methods you cant acces with javascript.
Post your code to show what you mean.
__________________________________________________ ________
I am DJ Kat...that's my name. Its a D and a J and a Kat with a K.