1
1
Fork 0

item deletion and hover images

This commit is contained in:
Mike Macgirvin 2010-07-26 17:01:37 -07:00
commit 7a6665b5cf
9 changed files with 92 additions and 45 deletions

View file

@ -20,11 +20,6 @@
msie = $.browser.msie ;
NavUpdate();
// $('.wall-item-delete-icon').hover(function() {
// $(this).attr("src",$(this).attr("src").replace('hide',''));
// },function() {
// $(this).attr("src",$(this).attr("src").replace('','hide'));
// });
});
@ -79,5 +74,18 @@
return confirm("Delete this item?");
}
function imgbright(node) {
$(node).attr("src",$(node).attr("src").replace('hide','show'));
}
function imgdull(node) {
$(node).attr("src",$(node).attr("src").replace('show','hide'));
}
</script>