Проблемный кусок
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>')
})
}
В хроме всё ок. Почему в фф не работает?