We can insert new element in to the DOM using appentTo() method. To perform dynamic html generation of anchor tag coupled with .attr() and appentTo() method. The following example shows you how to create dynamic html element in jQuery.
Example:
<html>
<head>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
<style type="text/css">
.titleText {
color: #0094ff;
font-family: arial;
}
</style>
<script>
$(function () {
$("<a>learn .net skillsfrom infinetsoft.com</a>")
.appendTo("#divResult")
.attr("class", "titleText")
.attr("href","http://www.infinetsoft.com")
.attr("title","infinetsoft");
});
</script>
</head>
<body style="width: 400px;height:250px; border: 1px solid #e5dddd;color:#f5a307;">
<h2>dynamicallygenerating html element </h2>
<div id="divResult" style="color:#0094ff;" >
</div>
</body>
</html>
Output:
Post your comments / questions
Recent Article
- Requested setting INSTALLED_APPS, but settings are not configured. You must either define..
- ValueError:All arrays must be of the same length - Python
- Check hostname requires server hostname - SOLVED
- How to restrict access to the page Access only for logged user in Django
- Migration admin.0001_initial is applied before its dependency admin.0001_initial on database default
- Add or change a related_name argument to the definition for 'auth.User.groups' or 'DriverUser.groups'. -Django ERROR
- Addition of two numbers in django python
- The request was aborted: Could not create SSL/TLS secure channel -Error in Asp.net
Related Article