====== Javascript ====== ==== Modify an elements value in an iFrame ==== Remember, cross site access to iFrame properties is not possible (security). ==== Pass POST variable through Javascript ==== myvar = document.createElement('input'); myvar.setAttribute('name', 'somename'); myvar.setAttribute('type', 'hidden'); myvar.setAttribute('value', 'somevalue'); form.appendChild(myvar); ==== iFrames ==== * [[http://stackoverflow.com/questions/13214419/alternatives-to-iframe-srcdoc|Alternatives to iframe srcdoc]] * [[http://stackoverflow.com/questions/236073/why-split-the-script-tag-when-writing-it-with-document-write|Why split the