i have a problem with an application which is runs in a browser like firefox or ie. When i trying to put this application in a frame, it doesn't work
Im using xajax to check a number and if the number is allowed - some content will be changed with inner html. This works fine as long as I open the application directly in a browser.
But it doesn't work in a frame.
I find out, that the xajax.config.requestURI changed in the frame from https to http.
directly:
try { if (undefined == xajax.config) xajax.config = {}; } catch (e) { xajax = {};
xajax.config = {}; };
xajax.config.requestURI = "https://....../yx.php";
xajax.config.statusMessages = false;
xajax.config.waitCursor = true;
xajax.config.version = "xajax 0.5";
xajax.config.legacy = false;
xajax.config.defaultMode = "asynchronous";
xajax.config.defaultMethod = "POST";
with iframe:
try { if (undefined == xajax.config) xajax.config = {}; } catch (e) { xajax = {};
xajax.config = {}; };
xajax.config.requestURI = "http://........./yx.php";
xajax.config.statusMessages = false;
xajax.config.waitCursor = true;
xajax.config.version = "xajax 0.5";
xajax.config.legacy = false;
xajax.config.defaultMode = "asynchronous";
xajax.config.defaultMethod = "POST";
I hope, someone can help me