<html>
<head>
<script src="../../ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script>
$(document).ready(function(){
$("input").focus(function(){
$(this).css("background-color", "yellow");
});
$("input").blur(function(){
$(this).css("background-color", "green");
});
});
</script>
</head>
<body>
Name: <input type="text" name="fullname"><br>
Email: <input type="text" name="email">
</body>
<!-- Mirrored from www.w3schools.com/jquery/tryit.asp?filename=tryjquery_focus_blur by HTTrack Website Copier/3.x [XR&CO'2014], Mon, 27 Jan 2020 02:28:20 GMT -->
</html>