同じdivにホバー機能とonclik機能の両方をアタッチする正しい方法は何ですか?
これが私が試したものですが、うまくいきませんでした(クリックしても何も起こりません):
$(function outlineHider(){
$("#hotspot").hover(
function() {
$("#outlines").show(); //showing another div element
function bindClick() {
$("#hotspot").click(callAnotherFunction())};
},
function() {
$("#outlines").hide();
}
);
});