First page Back Continue Last page Image

Examples

<!DOCTYPE html>

<html>

<head>

<title>Welcome to jQuery #2!</title>

<script src="http://code.jquery.com/jquery-2.1.0.js"></script>

<script src="script02.js"></script>

</head>

<body>

<h1 id="welcome"> </h1>

</body>

</html>

$(document).ready(function() {

$("#welcome").append("Welcome to jQuery!");

});

Access to innerHTML using the jQuery append method