Select next element
Description
The following code shows how to select the next and change its 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() {<!--from ww w . j a v a 2 s . co m-->
$("p").next().text("java2s.com");
});
</script>
</head>
<body>
<p>bad or .</p>
<span>good</span>
</body>
</html>