Update Error in Firebug console error below. Thanks to Jasper since I didn’t think of it. my.url.com is my change, but it is the correct address to reference something through the SSLVPN.
Security error https://my.url.com/mobile/1.1.0/,DanaInfo=code.jquery.com,CT=js+jquery.mobile-1.1.0.js Line 3903
The code at this spot is within jquery.mobile-1.1.0.js
init: function() {
$win.bind( "hashchange", self.onHashChange );
// Handle popstate events the occur through history changes
$win.bind( "popstate", self.onPopState );
// if there's no hash, we need to replacestate for returning to home
if ( DanaGetHash(location) === "" ) {
history.replaceState( self.state(), document.title, DanaGetHref(location) );
}
}
Looks like DanaGetHash and DanaGetHref are added by the SSLVPN.
Original I have created a mobile page using jQuery Mobile and I’ve run in to an issue that works perfectly fine when accessed from a computer non-SSLVPN within our network, but when it is accessed through our SSLVPN, the page is broken badly.
Within IE8 and IE9, the front page displays but none of the subsequent pages that are links via a listview will even try to display. Clicking on a link displays the waiting spinner but never displays the page.
Within Chrome and Firefox, the front page is blank.
I’ve tried using a CDN for jQuery as well as a local copy within a relative directory.
- Our SSLVPN is Juniper
- jQuery 1.7.2 non-minimized
- jQuery Mobile 1.1.0 non-minimized
Feel free to ask for any details you may need and any help is appreciated.
In case it is of interest to anyone else, how this was resolved was two things with Juniper SSLVPN.
Hope this is of interest to someone.