cross

Cross domain with jQuery - on a subdomain

I have a iframe and want to either get some of the HTML from the page in the iframe or the opportunity to change the HTML on the page in the iframe with jQuery. I use this code to get content from the iframe: $('iframe#iframeBB').contents().find('table').each(function() { var at = $(this).attr('summary'); if (at == "Latest Data") { ...

ASP.NET cross domain modal window (window.showModalDialog) - parameter value always "undefined".

Hi, I have two webpages, parent page .aspx and child page .html. On parent page I have JavaScript function for invoking child page as modal window via window.showModalDialog. function viewCourseModal(url) { var sPars = SomeParameters(); var returnedValue = window.showModalDialog(url, "", sPars); document.getElementById("modalReadyForT...

AJAX-Request from Phonegap Apps

I'm working on a mobile web-app using HTML5 and sencha touch. My next step is to add some native capability using phonegap. My app uses Ajax requests to retrieve data from a server component and i am not sure if ajax will work within phonegap packed apps? Should i use JSONP instead? ...

Cross compile with another library.

How to compile with another set of libraries. When I compile on i686 Fedora 13 computer, it works fine. However, when I take the executable (via thumbdrive) and try to run it on another i386 machine, I get the following error message. /usr/lib/libstdc++.so.6: version ‘GLIBCXX_3.4.9’ not found (required by ./Recorder) Okay, so I have t...

How to change variable values between namespaces / classes?

Hello! I have a main form with a textBox1 with string value : asd namespace Crystal { public partial class MainForm : Form { //here is a textBox1 with text "asd" } } I want to change this textBox1 text from this class: namespace Crystal.Utilities { public class Logging { //textBox1.Text = "dsa"; } ...

Cross Reference and Passing the This Pointer between Classes [NS2/C++]

------------ ------------ | TclObjct | | Handler | ------------ ------------ |__________________________________| | -------------- ...

Authenticating in one Domain and querying users from another in Java

Is it possible to authenticate users in Active Directory Server A, and then search for users in Active Directory Server B using java? These servers are configured to be 2-way trusted. The above code fails. I can authenticate in server A perfectly fine, but when I start searching for users in B, it returns nothing Hashtable<String, ...