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

toolbar - How to add link to user registration inside toobar in admin joomla 3 custom component -

linux - disk space limitation when creating war file -

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