i want to know whether the plupload_droptext class is enabled while runtime or not?
and i want to perform some action if yes.
$('#upload').click(function() {
if( $('.plupload_droptext').enabled)
{
alert("Add files");
}
});
if any one know help me please.
Use hasClass to check whether #upload has the class .plupload_droptext or not.