You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello There - First of all great work on creating this library.
Since I am fairly new in using this library, I am having an issue with passing message from parent window to child window in ie8 using postmessage.htm.
The issues are below:
In the Jquery.PostMessage.js, the serializewnidowreference function is somehow throws an exception because it can't build a relationship between parent (opener) to the child window. On the other hand child to parent works okay since it check on window.parent.
I saw an optional parameter to pass the targetWindowName by the name. I did this, but then I encountered another error in the postmessage.htm
ript type="text/javascript">
(function () {
var win, data = document.location.hash.split("&");
if (data.length < 4) throw new Error("Invalid hash for postmessage");
// Refernece is a name (string)
if (data[1].substr(0, 1) === ':') {
win = window.open("", winRef[1].substr(1));
}
This condition yields true if (data[1].substr(0, 1) === ':') {
however winRef was not defined.
I appreciate your help in advance!
Smitty
The text was updated successfully, but these errors were encountered:
Hello There - First of all great work on creating this library.
Since I am fairly new in using this library, I am having an issue with passing message from parent window to child window in ie8 using postmessage.htm.
The issues are below:
ript type="text/javascript">
(function () {
This condition yields true if (data[1].substr(0, 1) === ':') {
however winRef was not defined.
I appreciate your help in advance!
Smitty
The text was updated successfully, but these errors were encountered: