Skip to content

Instantly share code, notes, and snippets.

@KentaGoto
Created May 21, 2020 05:00
Show Gist options
  • Save KentaGoto/4d8124ff252c36c6cbe0670dd3d243fe to your computer and use it in GitHub Desktop.
Save KentaGoto/4d8124ff252c36c6cbe0670dd3d243fe to your computer and use it in GitHub Desktop.
<!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