Welcome to my Blog

This Blogs gives the summary of the latest Technologies available in the market from the different website.you can post your questions/requests anything related to the Technology

Accessing IFRAME content in JavaScript


Use the following snippet to access the IFrame content in Java script

var iframeConent = document.getElementsByClassName("contentFrame");
if(iframeConent!= null)
{
var body = iframeConent[0].contentDocument.getElementsByTagName('body')[0];

}

0 comments:

Post a Comment