Skip to content

darkwing/PostMessager

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

PostMessager

PostMessager is a MooTools plugin that acts as a wrapper for the window.postMessage API which is available in IE8+, Firefox 3.1+, Opera 9+, Safari, and Chrome. PostMessager also normalizes the onMessage event for use within MooTools.

Screenshot

How to Use

PostMessager instances can be created at any time. Two arguments are accepted: the destination window and the instance options.

#JS

/* Get hold of an iFrame */
var domain = 'http://domain2.com';
var iframe = document.id('listenerFrame').contentWindow;

/* Create a PostMessager instance */
var messager = new PostMessager(iframe,{
	allowReceive: true,
	allowSend: true,
	validReceiveURIs: ['http://domain2.com'],
	onSend: function(message,dest) {
		console.log('sending "',message,'" to ',dest);
	},
	onReceive: function(message,source,origin) {
		console.log('received message "',message,'" from ',origin,' at ',source);
		this.reply('Got it!',source,origin);
	}
});

/* Send a message to the iFrame! */
messager.send('Hello from the parent window!',domain);

PostMessager handles sending, receiving, and replying to messages. Optimally you would add an instance to each frame.

For specific usage and options, please read the documentation or visit http://davidwalsh.name/js/postmessager

About

PostMessager is a MooTools wrapper for the window.postMessage API.

Resources

Stars

Watchers

Forks

Packages

No packages published