$("#" + parentElementId + " label").attr("class", "disabled")
VS
$('#radiolabel').addClass('disabled');
Which are the pros and cons?
Thanks
VS
Which are the pros and cons? Thanks |
||||
|
|
|
Here are some advantages of the two ways to do this:
|
|||
|
|
|
The two are not the same. Using As the name suggests |
|||
|
|
|
I'd go for |
|||
|
You better go for the |
|||
|
|