Disappearing Edit/Delete Icons In Comment Boxes (again)
Using Jamroom
it is what I thought it was, the code on the buttons looks like this:
$(function () {
$('#p{$item._item_id}').hover(function () {
$('#m{$item._item_id}').fadeToggle('fast');
});
});
But needs changing to this type of structure
$(function() {
var mid = $('#m{$item._item_id}');
$('#p{$item._item_id}').hover(function() {
mid.fadeIn('fast');
}, function() {
mid.fadeOut('fast');
}
);
});
The first one reads: when the cursor hovers over this block toggle its visibility. But since its showing toggling it means hiding it.
That needs changing to: when the cursor is over this block show it, otherwise hide it.
Still need to locate where that code is in your site so its not fixed yet.