Hello,

I use vba to scrub data from a specific website. I've been using javascript to interact with most of the site however I have run into a problem.

One of the sites has a popup with a locked addressbar and I can't figure out how to 'inject' my code in order to grab variable data. Ideally I want to change the variables within the pop up window.

The main proplem I am having is that the pop up loads with a locked addressbar. I believe it has to do with the function which calls the pop up:


Code:
function launchFeatures(a, b, c, d, e, f, g, h)
{
   var m,u;
   var tn =  document.test.subservtn[i].value;
   if ( tn == null || tn == "" ) 
   {
      alert ("test")    
      return false;
    }
   
   u = "./feature.jsp?subidx=" + a + "&a=" + b + "&b=" + c + "&c=" + d + "&d=" + e + "&e=" + f + "&f=" + g + "&g=" + h;
   openBrWindow(u,'locked','scrollbars=1,resizable=1');     
   return true;
}
The funtion which opens the child window is openBrwindow and as you can see it launching in the locked state. I have tried running openbrwindow('google.com') and it still launches a new window with a locked address bar.

This is a jsp site so from what I understand that function will only return a locked window state. Is there any way for me to manipulate and/or read the code from this child window? Any help would be appreciated!