How to disable a drop down list item in dropdown list on load using jquery

Sai Avinash

I have dropdown list with some list items . Here , i need to disable a single item in the dropdown list .

I mean value should be present in dropdown list but should not be selectable.

I have tried in the following way with no luck:

 $("#SelectorList select option [value*='n/a']").prop('disabled',true);

But, it is not working.i was able to disable entire dropdown list by using

 $("#SelectorList").prop('disabled',true);

What is the change that i need to do inorder to make this work. please help.

Adil

Assuming SelectorList is id of select you can use combination of desandant selector and attribute value selector with contains wild card.

$("#SelectorList option[value*='n/a']").prop('disabled',true);

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

How to receive the final selected item in a drop down list using jQuery

From Dev

multiple drop down list validation when select item using jquery

From Dev

datepicker : disable days using drop down list?

From Dev

datepicker : disable days using drop down list?

From Dev

How to disable drop down list in JSP?

From Dev

How to enable / disable drop down list of Spinner

From Dev

How to add sub item in drop down list

From Dev

how to select specific drop down list Item

From Dev

how to select specific drop down list Item

From Dev

How to add sub item in drop down list

From Dev

how to load category names in drop down list

From Dev

How to bind name to in drop down list using JQuery

From Dev

Drop down list filter using jquery or javascript

From Dev

Drop down list filter using jquery or javascript

From Dev

Unable to disable drop down list when using bootstrap

From Dev

How to disable list item of dropdown in angular js using ng-disable

From Dev

How to enable disable a select drop down list using radio buttons with angularjs?

From Dev

how to filter options in dropdown list based on another drop down selection

From Dev

how to replace value of drop down list selected item to some value on change event of text box in jquery?

From Dev

How to change the text of a button in a drop down menu with the text of the selected li list item - jquery

From Dev

How to drop a jQuery sortable item into a collapsed list?

From Dev

How to drop a jQuery sortable item into a collapsed list?

From Dev

Drop list down (item after item) on click

From Dev

drop down list selection with jquery

From Dev

How to bind a button icon to the selected item of a drop-down list?

From Dev

.NET How to send value of drop down list item with GET

From Dev

My dropdown list would not drop down

From Dev

Need to Pass Data From Drop Down List to Table using JQuery

From Dev

DIsplay Nested JSON Object in different drop down list using jquery

Related Related

  1. 1

    How to receive the final selected item in a drop down list using jQuery

  2. 2

    multiple drop down list validation when select item using jquery

  3. 3

    datepicker : disable days using drop down list?

  4. 4

    datepicker : disable days using drop down list?

  5. 5

    How to disable drop down list in JSP?

  6. 6

    How to enable / disable drop down list of Spinner

  7. 7

    How to add sub item in drop down list

  8. 8

    how to select specific drop down list Item

  9. 9

    how to select specific drop down list Item

  10. 10

    How to add sub item in drop down list

  11. 11

    how to load category names in drop down list

  12. 12

    How to bind name to in drop down list using JQuery

  13. 13

    Drop down list filter using jquery or javascript

  14. 14

    Drop down list filter using jquery or javascript

  15. 15

    Unable to disable drop down list when using bootstrap

  16. 16

    How to disable list item of dropdown in angular js using ng-disable

  17. 17

    How to enable disable a select drop down list using radio buttons with angularjs?

  18. 18

    how to filter options in dropdown list based on another drop down selection

  19. 19

    how to replace value of drop down list selected item to some value on change event of text box in jquery?

  20. 20

    How to change the text of a button in a drop down menu with the text of the selected li list item - jquery

  21. 21

    How to drop a jQuery sortable item into a collapsed list?

  22. 22

    How to drop a jQuery sortable item into a collapsed list?

  23. 23

    Drop list down (item after item) on click

  24. 24

    drop down list selection with jquery

  25. 25

    How to bind a button icon to the selected item of a drop-down list?

  26. 26

    .NET How to send value of drop down list item with GET

  27. 27

    My dropdown list would not drop down

  28. 28

    Need to Pass Data From Drop Down List to Table using JQuery

  29. 29

    DIsplay Nested JSON Object in different drop down list using jquery

HotTag

Archive