How do I reset a jquery-chosen select option with jQuery?

前端 未结 21 722
一个人的身影
一个人的身影 2020-11-30 21:42

I have tried numerous things and nothing seems to be working.

I am using jQuery and Chosen plugin.

Methods I have tried:

var select = jQuery(         


        
21条回答
  •  春和景丽
    2020-11-30 22:12

    In Chrome version 49

    you need always this code

    $("select option:first").prop('selected', true)

提交回复
热议问题