Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSS

change element in iframe

// so you got an iframe (id="myiframe"). In that page you have an element id="theprice" and you want to change its value
// from the parent page do this in your javascript:
var iframevar = document.getElementById('myiframe');
var elmnt = iframevar.contentWindow.document.getElementById("theprice");
elmnt.innerHTML = theNewPrice;
 
PREVIOUS NEXT
Tagged: #change #element #iframe
ADD COMMENT
Topic
Name
5+1 =