特定の css クラスに関連付けられた項目にマウスを合わせたときに入力したい JSP に div がありますが、スコープの問題が発生しているようです。私が間違っていることは何か分かりますか?
JSP: $('.hoverTrigger').myFunc();
ここにテキストが入ります
JSP によって参照される JavaScript .js ファイル:
$.fn.myFunc = function(options) {
$(this).each(function() {
$this.hover(
function() {
// Want to set text in messageBox here but not working
$('#messageBox').after("Hover IN").remove();
},
function() {
// Want to set text in messageBox here but not working
$('#messageBox').after("Hover OUT").remove();
}
);
});
};