I can use it just fine in the window
$('#dropDownSpan').css('visibility', 'visible');
but how can I use it in another window, which is a child of this window or can be opened by this window.
I tried:
$window.parent.('#dropDownSpan').css('visibility', 'visible');
but it didn’t work, any idea?
source
share