- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- 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>
- Related Articles
- How to concatenate two strings using Java?
- In how many ways we can concatenate Strings in Java?
- How to concatenate two strings in C#?
- How to concatenate two strings in Python?
- How to concatenate two strings in Golang?
- Can MySQL concatenate strings with ||?
- C++ Program to Concatenate Two Strings
- Concatenate 2 strings in ABAP without using CONCATENATE function
- How we can prioritize jQuery events?
- How can I concatenate two arrays in java
- Build complete path in Linux by concatenate two strings?
- How to concatenate strings in R?
- Concatenate strings in Arduino
- How to concatenate several strings in JavaScript?
- How to correctly concatenate strings in Kotlin?

Advertisements