jQuery check if field is read only
Share
A jQuery code snippet to check if field is read only.
//if field is not read only
if($(this).attr('disabled'))
{
...
}
A jQuery code snippet to check if field is read only.
//if field is not read only
if($(this).attr('disabled'))
{
...
}