Removes the CSS class from the control.
Syntax
ctrl.removeClass(className);
Arguments
className
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.removeClass('highlight');
See also:
•JavaScript API: Control object > getControl()
•JavaScript API: Control object > add CSS Class
•JavaScript API: Control object > addStyle()
•JavaScript API: Control object