modified.

This commit is contained in:
umaircb 2014-04-07 08:07:45 +00:00
parent 03b9323005
commit 7c5f6137e1

View file

@ -104,6 +104,19 @@
</div>
</div>
<script>
jQuery(function() { // <== Doc ready
jQuery(".avatar1_file").hide(); // Initially hide all buttons
jQuery('.show-image').hover(function() {
jQuery(this).find('#avatar1_file').fadeIn(1500);
}, function() {
jQuery(this).find('#avatar1_file').fadeOut(1500);
});
});
</script>
<script type="text/javascript">
$(document).ready(function() {
@ -138,16 +151,4 @@
});
});
jQuery(function() { // <== Doc ready
jQuery(".avatar1_file").hide(); // Initially hide all buttons
jQuery('.show-image').hover(function() {
jQuery(this).find('#avatar1_file').fadeIn(1500);
}, function() {
jQuery(this).find('#avatar1_file').fadeOut(1500);
});
});
</script>