Created
May 21, 2020 05:00
-
-
Save KentaGoto/4d8124ff252c36c6cbe0670dd3d243fe to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE HTML> | |
<html> | |
<head> | |
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script> | |
<script> | |
$(function(){ | |
$(".focus").focus(function(){ | |
if(this.value == "keyword"){ | |
$(this).val("").css("color","#f39"); | |
} | |
}); | |
$(".focus").blur(function(){ | |
if(this.value == ""){ | |
$(this).val("keyword").css("color","#969696"); | |
} | |
}); | |
}); | |
</script> | |
<style type="text/css"> | |
.focus { | |
color: #969696; | |
font-size: 16px; | |
padding: 5px; | |
width: 200px; | |
} | |
</style> | |
</head> | |
<body> | |
<input type="text" class="focus" value="keyword"> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment