Hi,
I want to change background color of disabled select list. I have written following:
function testjquery() {
if( $('.selectlist').attr('disabled') == "disabled")
$(this).css('background-color','#cccccc');
}
It is not working. Can anyone help me with this?
Thanks!