[jQuery] Accessing elements from another frame
I,
Is there an easy way to reproduce the following using only jquery?
I am trying to hide and show an element in a specific frame from
another frame.
This code is actually working but I would prefer using jquery to do
it.
...
var lLoadingDiv =
top.content.document.getElementById('loading_div');
lLoadingDiv.style.display='inline';
...
Where "content" is the name of my target frame.
I want to use the show() and hide() jquery function instead.
Thanks,
Thierry