drop down menu - find all `option select` jquery -


$('#divid').find('input[type=text]'); 

if above statement find input text. how find select option in same div.

you need use option tagname selector:

$('#divid').find('option'); 

or

$('#divid option'); 

Comments

Popular posts from this blog

android - Pass an Serializable object in AIDL -

How to provide Authorization & Authentication using Asp.net, C#? -

How to use Authorization & Authentication in Asp.net, C#? -