I have a select box that is being populated dynamically from a database. As of right now the population of this check box is working flawlessly.
I have added functio
Another correct way to get selected value would be using this selector:
$("option[value="0"]:selected")
Best for you!