I am currently using this script and will love to extend it to change the color of the fields that have been filled. Can you help out please?
<script>
$(document).ready(function(){
$("input").focus(function(){
$(this).css("background-color","#cccccc");
});
$("input").blur(function(){
$(this).css("background-color","#ffffff");
});
});
</script>
Just check if the field is filled in on blur: