modified..

This commit is contained in:
umaircb 2014-04-01 05:22:46 +00:00
parent cf2aea8f1e
commit d71fa7e64c

View file

@ -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>