- 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 to use a variable in a string in jQuery?
jQuery is a JavaScript library introduced to make development with JavaScript easier. Let us see how to use variable in a string using the html() method.
Example
You can try to run the following code to learn how to use variable in a string in jQuery −
<!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="wrap"> <a href="#">Click me</a> <div class="myclass"></div> <div class="id">Learners</div> </div> </body> </html>
- Related Articles
- How to concatenate variable in a string in jQuery?
- How to use a global variable in a Python function?
- How to get substring of a string in jQuery?
- How to trim a string using $.trim() in jQuery?
- How to pass a variable into a jQuery attribute-contains selector?
- How to get a variable name as a string in Python?
- How to get a variable name as a string in PHP?
- How to use variable-length arguments in a function in Python?
- How to check whether a string contains a substring in jQuery?
- How to call a function from a string stored in a variable PHP?
- How to use a value of XPath expression result in JSP in a variable?
- How to reverse a string using only one variable in JavaScript
- How to use a variable inside a Foreach-Object Parallel?
- How to convert an enum type variable to a string in C++?
- How to use universal (*) selector in jQuery?

Advertisements