Skip to content

Instantly share code, notes, and snippets.

@muzafferkoluman
Last active August 25, 2017 10:28
Show Gist options
  • Save muzafferkoluman/833ce3a1d88d783feaecb04b323f66a1 to your computer and use it in GitHub Desktop.
Save muzafferkoluman/833ce3a1d88d783feaecb04b323f66a1 to your computer and use it in GitHub Desktop.
Jquery üzerine gelince change
$(function() {
$("#enlogohover").on({
"mouseover" : function() {
this.src = '/images/en.png';
},
"mouseout" : function() {
this.src='/images/en-white.png';
}
});
$("#trlogohover").on({
"mouseover" : function() {
this.src = '/images/tr-white.png';
},
"mouseout" : function() {
this.src='/images/tr.png';
}
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment