Skip to content

Instantly share code, notes, and snippets.

@devdays
Last active August 29, 2015 14:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save devdays/e4d0dc86046e9f8e79f3 to your computer and use it in GitHub Desktop.
Save devdays/e4d0dc86046e9f8e79f3 to your computer and use it in GitHub Desktop.
check your incoming data like this when receiving multiple data types
function onMessage(evt) {
if (evt.data instanceof Blob) {
// do something with evt.data
} else {
document.getElementById("textresponse").value = evt.data;
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment