Monday, January 25, 2010

Read Value of Control which is inside iframe

var my_frame = document.getElementById("frame1");       
var framecontent = my_frame.contentWindow || my_frame.contentDocument;      
var ctrl = framecontent.document.getElementById("txtBox");      
alert(ctrl.value);

No comments:

Post a Comment