Here's how to do it:

example

Here's how I have it:

enter image description here

I do not know where else to dig? I rummaged in Bootstrap multiselect but so far in vain. Who knows tell or show. Thank.

Код выложен `https://jsfiddle.net/yurzui/qwfc4htk/` 
  • one
    Put it on jsfiddle, then maybe the people will pull up, and only scraps of code ... - borodatych
  • one
    And if you hang up functions on onchange events for input'ov, which will change the contents of the span.price-label? - Visman
  • jsfiddle.net/yurzui/qwfc4htk example code - sagan
  • About hanging up functions on onchange events for input'ov - I don’t quite understand how to do it - sagan
  • one
    For example, the onchange event added to the <textarea> tag is triggered every time a new text is entered and the field has lost focus ( htmlbook.ru/html/attr/onchange ) .. Here you threw the idea to jsfiddle.net/borodatych/rgz7d7yy , it takes a little work by file. - borodatych

1 answer 1

As understood for the place PRIJS need to display the entered data below in input?!

Well, heaped up with you ... Here's an idea for implementation:

 <div id="PRIJS"> <span id="st1">...</span> - <span id="st2">...</span> </div> <input type="text" id="stack1"/> - <input type="text" id="stack2"/> <script> $(function(){ $('#stack1').on('keydown', function(){ $('#st1').text( $(this).val()||'...' ); }); $('#stack2').on('keydown', function(){ $('#st2').text( $(this).val()||'...' ); }); }); </script> 

As you give an example on jsfiddle , it will be more constructive ...