How do I make a div
appear when a button is disabled, and when enabled I want this div
to be hidden
$(document).on('ready', '#btn-cadastra-atividade', function ()
{
$this = $(this)
if($this.attr('disabled') === true)
{
$('#erroAtividade').show();
}
else
{
$('#erroAtividade').hide();
}});