Hello, is there anyway I can use jQuery to lock out a div, ie, make the div grey out, on the submission of a button?
$('#buttoncancel').click(function()
{
$('#radiodj').hide('slow');
}
);
Currently, that hides the radiodj div as you can see, but how do I make it so that the div becomes greyed out/disabled, using jQuery?