mirror of
https://github.com/tim-krehan/shopping-list.git
synced 2024-11-24 06:40:01 +01:00
7 lines
230 B
JavaScript
7 lines
230 B
JavaScript
$(document).ready(function(){
|
|
$("#username-input").focus(function(){$(this).css("color", "black");});
|
|
$("#mail-input").focus(function(){$(this).css("color", "black");});
|
|
$("#userSaveButton").click(function(){
|
|
|
|
});
|
|
});
|