I want to add tooltip for selectitem while doing mouse over on each item.
Here is my code
<h:selectOneRadio id="class" styleClass="bold" rendered="# {bean.campusObject.campus=='C'}" value="#{bean.type}">
    <f:selectItem itemLabel=" Dept " itemValue="1" />
    <f:selectItem itemLabel="Course " itemValue="2" />
    <f:selectItem itemLabel="Course with Dept" itemValue="3" />
    <f:selectItem itemLabel="Specialization" itemValue="4" itemDisabled="#{!bean.level.equals('PG')}"/>
                                <f:ajax render="cours" ></f:ajax>
                                </h:selectOneRadio>
 
     
    