I am trying to use a custom build of DOJO, and deploy it on a web-server, so that applications running on an app server may be able to access and use it.
- The cross-domain build does not seem to work right for me, however, if I run a similar static page deployed on the web-server, it runs just fine.
- Tried using both, get the same pr...
This is a very narrow scope of the code, but it is where the issue lies.
function getJSON(tabUrl){
$.getJSON(tabUrl, function(data){
console.log(data);
});
}
I am using jquery 1.3 because getJSON in 1.3 can handle malformed JSON. The server I'm getting my json from uses the old parameter:'value' format.
Here is the perplexin...
I'm having problems with cross-domain application hosting with Silverlight.
I have an application hosted on a different domain and included with the following HTML code to the page:
<script type="text/javascript">
function succ( sender, args ) {
console.log("SUCCESS");
console.log(sender);
console.log(args);
}
function err(...
I know this subjet isn't new at all but i'm going to be crazy that it doesn't work at all. So I create a "KISS" (Keep It Stupide Simple) sample just to see if it may be something from the original SWF or just a real problem...
HTML is hosted on web site A (actually the Javascript too, but this last one will be moved on web site C) en th...