Set element text
Description
The following code shows how to set element text.
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 .j a va2 s .c om-->
var input = $(":submit").parent().css({
background : "yellow",
border : "3px red solid"
});
$('#result').text('jQuery matched ' + input.length + ' elements.');
});
</script>
</head>
<body>
<form>
<input type="submit" />
</form>
<div id="result"></div>
</body>
</html>