
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Escape Square Brackets in jQuery Selector
To escape square brackets in jQuery selectors is quite easy. Let’s see with an example of escaping the brackets in the name of the <select> box.
Example
Whatever you will select, will get added to the textarea on button click.
<!DOCTYPE html> <html> <head> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script> <script> $(document).ready(function() { $("#addnow").click(function () { $("#myselect :selected").each(function () { $("#text").val($("#text").val() + $(this).text() + "
"); }); }); }); </script> </head> <body> <select name="selectemail[]" multiple="true" id="myselect"> <option value="email">email@example.com</option> <option value="name">David</option> </select> <textarea id="text"></textarea> <button id="addnow">Select and Click to Add</button> </body> </html>
Advertisements