Need a guide to Solve my program errors in JavaScript, jQuery, C# | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Need a guide to Solve my program errors in JavaScript, jQuery, C#

I am learning javascript and jquery is anyone help me to solve my coding errors and suggest me best way to learn coding

15th Feb 2020, 5:08 PM
M Nirup Kumar
M Nirup Kumar - avatar
3 Answers
+ 1
Where is your code?
15th Feb 2020, 5:15 PM
A͢J
A͢J - avatar
0
<!DOCTYPE html> <html> <head> <script class="jsbin" src="http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"></script> <meta charset=utf-8 /> <title>Dynamic</title> <style> body{ font-size:25px; margin:100px; } </style> </head> <body> <script> $(function() { $('input.string').blur(function() { var values = $('input.string').filter(function(){ return this.value != ''; }).map(function() { return $(this).val(); }).get(); var $list = $('.string-list').empty(); for(var i in values) { $('<option />').text(values[i]).appendTo($list); } }); }); </script> <fieldset> <legend style="color:blue">Index Extractor</legend> <br> <div> <label for="string"><b>Please Enter Value : </b></label> <input class="string" type="text" id="string" /><br/> <br> <label><b>Get Index : </b></label> <select class="string-list"></select> </div> <br> </fieldset> </body> </html>
15th Feb 2020, 5:22 PM
M Nirup Kumar
M Nirup Kumar - avatar
0
Here i am trying to add a string dynamically and extract distinct or unique letters from that string to dropdownlist Next i need to get indexes of that unique letters
15th Feb 2020, 5:26 PM
M Nirup Kumar
M Nirup Kumar - avatar