<!DOCTYPE html>
<html>
<head>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script>
$(document).ready(function(){
$("div").focus(function(){
$(this).css("background-color","blue");
});
$("div").blur(function(){
$(this).css("background-color","black");
});
});
</script>
</head>
<body>
<div
style="background-color:black;height:100px;width:100px;">
</div>
</body>
</html>
JorgeM 958 Problem Solver Team Colleague Featured Poster
Be a part of the DaniWeb community
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.