Is there some option to get all observable values from inputs? I mean to get this values:
<input type="text" data-bind="value: myValue">
I have many inputs with diffrent values, I need to get all of them and put them to the loop.
$("input[type=text]").each(function(){
$(this).value().....
})
Any idias? Note: I need to get the observable value of my viewModel, not only the string