Okay so we have a iframe on a form connecting to a basic version of a accounting system.
We needed to find a way to update CRM with certain fields from this page, and place it on our CRM form.
The following code worked a treat.
{codecitation style="brush: javascript;"}var QueryString= crmForm.all.IFRAME_NAME_OF_YOUR_IFRAME.contentWindow.document.getElementById('NAME_OF_THE_PAGES_ID').value;
if (QueryString)
{
crmForm.all.YOUR_FIELD_ON_YOUR_FORM.DataValue = QueryString;
}
else
{
alert("Unable to retrieve xxx, Please check it exists or contact your administrator!");
}{/codecitation}
Enjoy
Jonathan