Insert hardcoded element
Description
The following code shows how to insert hardcoded element to a span element with prepend.
Example
<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() {<!-- w w w .jav a 2 s. c om-->
$("span").prepend("<b>Hello </b>");
});
</script>
</head>
<body>
<span>span</span>
<div id="foo">FOO! java2s.com</div>
</body>
</html>