Cant open the capx, I do not have the spritefont+ installed.
But I imagine you have the ajax plugin doing a request or post and its not working.
Hitting Ctrl shift J gives you the error console in chrome and FF.
I forgot about the cross domain policies.
Sites generally have cross domain security enabled. (origin access)
So the ajax is not the best solution unless your trying to fetch info from one of your own sites on the same domain or sites having all origin access set to *
You could use a hidden Iframe, load the page, and fetch the html from the frame with a bit of javascript.
yeah sorry I use SF+ by default.
Yes it's an Ajax request and Ajax.lastData comes up empty. You're right, I checked the Chrome console and it says "No 'Access-Control-Allow-Origin' header is present on the requested resource."
Sorry to be clueless but could you give a bit more info on how I would go about the iFrame technique?