item deletion and hover images
This commit is contained in:
parent
17808daf5e
commit
7a6665b5cf
9 changed files with 92 additions and 45 deletions
|
|
@ -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>
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue