 
  Data Structure Data Structure
 Networking Networking
 RDBMS RDBMS
 Operating System Operating System
 Java Java
 MS Excel MS Excel
 iOS iOS
 HTML HTML
 CSS CSS
 Android Android
 Python Python
 C Programming C Programming
 C++ C++
 C# C#
 MongoDB MongoDB
 MySQL MySQL
 Javascript Javascript
 PHP 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
How can we concatenate two strings using jQuery?
To concatenate two strings use the + concatenation operator. You can try to run the following code to learn how to concatenate two strings using jQuery −
Example
<!DOCTYPE html> <html> <head> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>     <script>     $(function(){       $("a").click(function(){         var id= $(".id").html();         $('.myclass').html("<br><div class='new' id='" + id + "'>Hello</div>");                   });     });     </script> </head> <body>    <div class="new">      <a href="#">Click me</a>      <div class="myclass"></div>      <div class="id">Tutorialspoint</div>    </div> </body> </html>Advertisements
 