I have two JS calls in a popup that update the state of frame elements in a parent window, that I would like to replace with jQuery calls:
parent.window.opener.parent.frames[0].someCustomFunction(); parent.window.opener.parent.frames[1].document.getElementById('text').value = "some text";
What is the best way to access the these in a parent?
Thx