﻿
// set attribute for focus form element
// Input set background
$('input[id*="txt"],input[id*="btn"],input[id*="ddl"],input[id*="ckb"],input[id*="rdb"]')
               .live('focus', function () {
                    $(this).css('background-color', 'yellow');
                })
            .live('blur', function () {
                $(this).css('background-color', '');
            });
