すべての div にホバーを実装しようとしている jquery カルーセルがありますが、特定の div でのみ機能します。他の div では機能しない理由を教えてください...緑と赤のボタンをクリックすると、カルーセルの動きが表示されます。 ...
以下の私のjsコードを提供する
$(".specialHover").hover(
  function () {
        //  $("<div class='cta'>add image</div>").click(function() {
    $("<div class='cta'>add image</div>").click(function() {
        $(this).parent().unbind("hover").children("img").attr("src", "http://www.onlinegrocerystore.co.uk/images/goodfood.jpg");
        $(this).remove();
    }).appendTo(this);
  }, 
  function () {
    $(this).find("div:last").remove();
  }
);