Add DOM element
Description
The following code shows how to add an element returned from document.getElementById to a paragraph.
Example
<!--from w w w . j a va2 s . co m-->
<html>
<head>
<script
src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script type="text/javascript">
$(document).ready(function() {
$("p").add(document.getElementById("a")).css("background", "yellow");
});
</script>
</head>
<body>
<body>
<p>Hello</p>
<span id="a">Hello</span>
</body>
</html>