Código:
Muchas gracias $(document).ready(function(){ function socialbottons(drbottom, socialcolor, socialtype){ $(drbottom).hover( function(){ console.log(socialcolor) $( this ).css( "color", socialcolor); var socialchange = "<span style='color: " + socialcolor + "'>"+socialtype+" </span>"; $( "#dr-contact").html( socialchange); $( this ).animate({ "fontSize": "40px" }, 200 ); },function(){ $( this ).animate({ "fontSize": "28px" },200); $( "#dr-contact").html("Contact us </span>" ); $( this ).css( "color", ""); } ) $(drbottom).click( function(){ $( this ).css( "color", "red"); $( this ).fadeOut( 0 ); $( this ).fadeIn( 500 ); } ) }; $( "#dr-facebook" , "blue"," facebook" ).hover( socialbottons("#dr-facebook") ); $( "#dr-twitter", "blue"," folow us" ).hover( socialbottons("#dr-twitter") ); $( "#dr-linkedin", "blue"," linkedin" ).hover( socialbottons("#dr-linkedin") ); $( "#dr-google", "red"," +1" ).hover( socialbottons("#dr-google") ); $( "#dr-youtube", "red"," canal de youtube" ).hover( socialbottons("#dr-youtube") ); $( "#dr-mail" , "green"," send us a mail").hover( socialbottons("#dr-mail") ); });