You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Don't have .val() return selected-but-disabled options, or selected options inside a disabled optgroup. Doesn't change the .val() returned for a disabled select. Fixes#3240, adapted from Nathan Hammond's patch there.
t("Form element :input","#form :input",["text1","text2","radio1","radio2","check1","check2","hidden1","hidden2","name","search","button","area1","select1","select2","select3"]);
430
+
t("Form element :input","#form :input",["text1","text2","radio1","radio2","check1","check2","hidden1","hidden2","name","search","button","area1","select1","select2","select3","select4"]);
431
431
t("Form element :radio","#form :radio",["radio1","radio2"]);
432
432
t("Form element :checkbox","#form :checkbox",["check1","check2"]);
433
433
t("Form element :text","#form :text:not(#search)",["text1","text2","hidden2","name"]);
434
434
t("Form element :radio:checked","#form :radio:checked",["radio2"]);
435
435
t("Form element :checkbox:checked","#form :checkbox:checked",["check1"]);
436
436
t("Form element :radio:checked, :checkbox:checked","#form :radio:checked, #form :checkbox:checked",["radio2","check1"]);
0 commit comments