Files
lpmj6/22/jqueryasyncget.htm
T
RobinNixon 188af22a54 Final
2021-04-18 15:31:38 +01:00

19 lines
453 B
HTML

<!DOCTYPE html>
<html> <!-- jqueryasyncget.htm -->
<head>
<title>jQuery Asynchronous Get</title>
<script src='jquery-3.5.1.min.js'></script>
</head>
<body style='text-align:center'>
<h1>Loading a web page into a DIV</h1>
<div id='info'>This sentence will be replaced</div>
<script>
$.get('urlget.php?url=amazon.com/gp/aw', function(data)
{
$('#info').html(data)
} )
</script>
</body>
</html>