i tried this code but its not working.. when i on-focus textbox it shows error
function ChangeBgColor(obj, evt) { if(evt.type==\"focus\"
Try doing it with jQuery.
$('#div').on('focus', function() { $(this).css({background:'blue'}); });