jQuery doesn't work in Nokia E71 browser

1.4k Views Asked by At

I'm unable to use jQuery 1.5.2 with Nokia E71 browser.

I found this problem reported in jQuery bug tracker without future fix.

Is there any possible workaround?

Thanks.

2

There are 2 best solutions below

1
On BEST ANSWER

In order to use jQuery with Nokia E71 mobile browser I changed jQuery code.

Replace div.attachEvent("onclick", function click() {

with div.attachEvent("onclick", function(){

And

Replace div.detachEvent("onclick", click);

with div.detachEvent("onclick", arguments.callee);

4
On

Nokia E71 is using the S60 third generation OS. If you are using tje jQuery Mobile framework to build touch-friendly web applications/sites, then you have this list to take in consideration.

It tells that the third generation of that OS renders your pages in "very low quality" (if you use that framework of course).

Please, post us the code you are experimenting and jquery version you are using. Regards.