I use this plug-in (version: 1.5.5, jQuery 1.3.2) also I can not be saved
of the message on an error "The requested content cannot be loaded. Please
try again later.", which appears only in IE (and in 8th version too). In
other browsers works remarkably.
My parts of a code:
$ ("#test_id").click (function (e) {
e.preventDefault ();
e.nyroModalManual ({
debug: false,
bgColor: null,
minWidth: 480,
modal: true,
type: ' iframe ',
width: 410,
height: 120,
minHeight: 130,
autoSizable: true,
});
return false;
});
.....................
<a href = "test.php" id = "test_id"> Click me </a>
.........................
Help PLS!!!
P.S. Has noticed, that the given problem arises in 520 string in a file
nyromodal.js
I see 2 mistakes in your code. 1) in a json object, the last element shouldn't have a coma after it. So remove the coma from "autoSizable: true," 2) You don't set the URL of the modal. Add it in the nyroModalManual call like: "url: $(this).attr('href')," Let me know if it's working.