Removes the CSS class from the control.
Syntax
ctrl.removeCSS(CSSclass);
Arguments
CSSclass
a CSS class name. Example: 'highlight'.
Return value
No return value.
Example
Remove the 'highlight' class from the control using the JavaScript OnLoad event:
var ctrl = Runner.getControl(pageid, 'Make');
ctrl.removeCSS('highlight');
See also:
•JavaScript API: Control object > getControl()
•JavaScript API: Control object > add CSS Class
•JavaScript API: Control object > addStyle()
•JavaScript API: Control object