I have a CSS code:
.ui-dialog-buttonset .on{
color: black;
border-radius: 7px;
}
And i want to set display = none for this using jquery:
$('#ui-dialog-buttonset .on').css('display', 'none');
It is not woring. What am I doing wrong ? Appreciate your help.