У меня есть gridview, который заполняется jquery. Ниже приведена часть моего кода, в котором указанная выше ошибка:
var codes = $(this).find("Code").text();
$("td", row).eq(6).html($(this).find("oTotal").text());
if ($(this).find("Stock").text() == 'Y') {
$("td", row).eq(7).html('<a href="#" class="tooltip" title="This is my divs tooltip message!" id="' + codes + '" style="text-decoration:none">Y</a>');
$('#' + codes).live('click', function () {
$('#' + codes).tooltip();
});
}
else {
$("td", row).eq(7).html($(this).find("Stock").text());
}
Я получаю ошибку на $('#' + code).tooltip(); У меня есть jquery.ui/1.8.22 и jquery/1.8.3.