Web Development Ninjas Question: Download Ninjas Web Developer PDF

Tell me how do you find all the selected options of HTML select tag?

Tweet Share WhatsApp

Answer:

This is one of the tricky jQuery question on Interviews. This is a basic question, but don’t expect every jQuery beginner to know about this. You can use the following jQuery selector to retrieve all the selected options of <select> tag with multiple=true :

$('[name=NameOfSelectedTag] :selected')

This code uses the attribute selector in combination of :selected selector, which returns only selected options. You can tweak this and instead of name, you can even use id attribute to retrieve
<select> tag.

Download Ninjas Web Developer PDF Read All 58 Ninjas Web Developer Questions
Previous QuestionNext Question
Do you know what is the difference between jQuery.get() and jQuery.ajax() method?Explain me what is the difference between <div> and <frame>?