modified..
This commit is contained in:
parent
cf2aea8f1e
commit
d71fa7e64c
1 changed files with 5 additions and 3 deletions
|
@ -474,9 +474,11 @@
|
|||
jQuery(".the-buttons").hide(); // Initially hide all buttons
|
||||
|
||||
jQuery('.show-image').hover(function() {
|
||||
jQuery(this).find('#avatar_file').fadeIn(1500); // use .find() !
|
||||
jQuery(this).find('#avatar_file').fadeIn(1500);
|
||||
jQuery(this).find('#background_file').fadeIn(1500);// use .find() !
|
||||
}, function() {
|
||||
jQuery(this).find('#avatar_file').fadeOut(1500); // use .find() !
|
||||
jQuery(this).find('#avatar_file').fadeOut(1500);
|
||||
jQuery(this).find('#background_file').fadeOut(1500);// use .find() !
|
||||
});
|
||||
});
|
||||
</script>
|
||||
</script>
|
||||
|
|
Loading…
Add table
Reference in a new issue