jQuery get dropdown-rel-Wert()

wie bekomme ich das dropdown value?

  <select id="t_dermal_name">
     <option value="1" rel="30">Between Eyebrows</option>
       <option value="7" rel="30">Individual Line Softening</option>
       <option value="2" rel="30">Lip Contouring</option>
   </select>

jquery:

$("#t_dermal_name").change(onSelectChange);

function onSelectChange(){
    var selected = $("#t_dermal_name option:selected");     
    var output = "";
    if(selected.val() != 0){
        output = selected.rel();
    }
    $("#output").html(output);
}
  • selected.rel() sollte selected.attr('rel')
InformationsquelleAutor tonoslfx | 2011-01-06
Schreibe einen Kommentar