Search code examples
jquerynokiabrowsere71

jQuery doesn't work in Nokia E71 browser


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.


Solution

  • 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);