In Internet Explorer this code works fine.
In Chrome the page loads without the data being passed.
Can someone tell me why?

Click a button on my web page, a new tab opens an HTML template and
receives the data into Div tags.

Code snippet under button:

function sendtotab()
{
...
  w=window.open('/core/media/media.nl?
id=12622&c=364464&h=d718bae14633ee2cf68a&_xt=.htm','mypage');
  while (w.document.readyState != "complete")
  {
   //
  }
...
//*****-Send to HTML-********************************************
        doc=w.document;
        doc.getElementById("divChildName").innerText=ChildName;
        doc.getElementById("divCountry").innerText=Country;
}

Code snippet from the template that receives the data:

<div id="divChildName"; class="ValueLarge"; style="position:absolute;
top:48px; left:16px; width:456px; height:32px;">Child Name</div>
<div id="divCountry"; class="LabelMedium"; style="position:absolute;
top:574px; left:82px; width:332px; height:23px">Country</div>



--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Chromium-discuss" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/chromium-discuss?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to