Thursday, January 18, 2018

IFrame and Parent Communcaiton



window.send = function() {
  var iframe = document.getElementById('jsfiddle-frame').contentWindow;
  var message = document.querySelector('#textOutput').value;
  iframe.postMessage(message, '*');
}

window.addEventListener('message', function(event) {
  document.querySelector('#textOutput').value = event.data;
}, false);

  

No comments:

Post a Comment

Recent Post

Databricks Delta table merge Example

here's some sample code that demonstrates a merge operation on a Delta table using PySpark:   from pyspark.sql import SparkSession # cre...