Here's how to do it:
Here's how I have it:
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/` Here's how to do it:
Here's how I have it:
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/` 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 ...
Source: https://ru.stackoverflow.com/questions/438099/
All Articles