पैरेंट ऑब्जेक्ट बच्चे से मुख्य विंडो का संदर्भ प्रदान करता है।
निम्नलिखित मूल कोड है। नीचे दिया गया निर्देश iFrame को हर 3 सेकंड में पैरेंट विंडो पर एक संदेश भेजने के लिए ट्रिगर करता है। मुख्य विंडो से किसी प्रारंभिक संदेश की आवश्यकता नहीं है!
var a= window.addEventListener ? "addEventListener" : "attachEvent";// here a is the event method var b= window[a];// here b is the eventer var c= a== "attachEvent" ? "onmessage" : "message";// here c is the message event // Listen to message from child window b (c,function(e) { var d= e.message ? "message" : "data";// here d is the key var f= e[d];//here f is data },false);