Показать сообщение отдельно
  #1 (permalink)  
Старый 21.07.2014, 15:12
Интересующийся
Отправить личное сообщение для Xant1k Посмотреть профиль Найти все сообщения от Xant1k
 
Регистрация: 08.03.2012
Сообщений: 13

if ($.browser.mozilla)
Проблемный кусок
if ($.browser.mozilla) {
        getstr = "?t=" + movie_imdb + "&y=" + year;
        GM_xmlhttpRequest({
            method: "GET",
            url: "http://www.omdbapi.com/" + getstr,
            onload: function (response) {
                var data = eval("(" + response.responseText + ")");
                $("#loading").detach();
                $(".torrents").append('<a style="margin: 14px;" target="_blank" title="IMDB" href="http://www.imdb.com/title/' + data.imdbID + '"><img style="border:0; margin-top: 3px; margin-bottom : 3px; width: 16px; height: 16px;"  src="' + imdb_img + '"></a>')
            }
        })
    } else {
        $.ajax({
            url: "http://www.omdbapi.com/",
            data: "t=" + movie_imdb + "&y=" + year,
            jsonp: "callback",
            jsonpCallback: "callbackName",
            dataType: "jsonp",
            timeout: 180000
        }).done(function callbackName(data) {
            if (data.Response == "True") {
                $("#loading").detach();
                $(".torrents").append('<a style="margin: 14px;" target="_blank" title="IMDB" href="http://www.imdb.com/title/' + data.imdbID + '"><img style="border:0; margin-top: 3px; margin-bottom : 3px; width: 16px; height: 16px;"  src="' + imdb_img + '"></a>')
            } else {
                $("#loading").detach();
                $(".torrents").append('<a style="margin: 14px;" target="_blank" title="IMDB" href="http://www.imdb.com/find?q=' + movie_enc + '"><img style="border:0; margin-top: 3px; margin-bottom : 3px; width: 16px; height: 16px;"  src="' + imdb_img + '"></a>')
            }
        }).fail(function (jqXHR, data) {
            $("#loading").detach();
            $(".torrents").append('<a style="margin: 14px;" target="_blank" title="IMDB" href="http://www.imdb.com/find?q=' + movie_enc + '"><img style="border:0; margin-top: 3px; margin-bottom : 3px; width: 16px; height: 16px;"  src="' + imdb_img + '"></a>')
        })
    }

В хроме всё ок. Почему в фф не работает?
Ответить с цитированием