53063593e3
Final
19 lines
466 B
HTML
19 lines
466 B
HTML
<!DOCTYPE html>
|
|
<html> <!-- jqueryasyncpost.htm -->
|
|
<head>
|
|
<title>jQuery Asynchronous Post</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>
|
|
$.post('urlpost.php', { url : 'amazon.com/gp/aw' }, function(data)
|
|
{
|
|
$('#info').html(data)
|
|
} )
|
|
</script>
|
|
</body>
|
|
</html>
|