View Full Version : is there an update to opera to 9.2 available?
bakerbaker
05-15-2007, 09:11 PM
ive noticed that ajax does not work using opera. i am hoping that nokia can make an upgrade of some sort?
thoughts?
adoyle
05-16-2007, 09:38 PM
Does not do AJAX in what way? AJAX you are writing or AJAX from other web sites you visit?
I've discovered that Opera on the 770 and 800 requires you to set the 'Referer' header in the request to the current page from which the AJAX request comes.
E.g. using Prototype:
function DoAjaxStuff() {
new Ajax.Request('/stuff', { method: 'get',
requestHeaders:['Referer', document.location.href],
asynchronous: true });
}
(Note that this request itself doesn't do very much.... it's to illustrate the headers.)
bakerbaker
05-17-2007, 01:29 PM
hmm, thanks for the heads up. now im just wondering where i can put that in my rails application.
vBulletin® v3.8.7, Copyright ©2000-2013, vBulletin Solutions, Inc.