Guys here we are gonna see how we can load another webpage content using jquery, very simple to use.
Here is the code of “test.html” file
<head>
<title>Content Showing Script</title>
<script type="text/javascript" src="jquery-1.2.6.js"></script>
<script type="text/javascript">
function content()
{
$.ajax({
url : "getpage.php",
success : function (data) {
$("#content").html(data);
}
});
}
</script>
</head>
<body>
Get The Content<br><input type="button" value="Get Data" onClick="
content();"><br><textarea id="content" rows="10? cols="50?></textarea>
2. Edit the GETPAGE.PHP page and add this script
<?php echo "This is a test Page<br>"; echo "From Mistonline.in <br>"; ?>
Hope this tutorial helped you a lot.Thanks
Incoming search terms:
- jquery load web page (15)
- jquery get webpage content (13)
- jquery load content from another page (11)
- jquery load webpage (10)
- jquery get content from another page (8)
- jquery load next web-page (7)
- jquery load another web page (7)
- jquery get content from another site (6)
- jquery load website (6)
- jquery load other webpage (4)
- jquery fetch web page (4)
- jquery webpage content (4)
- jquery load another website (4)
- load website with jquery (3)
- jquery load another page (3)
- jquery load from other website (3)
- jquery load other website (3)
- how to access web page content from another one using javascript (2)
- jquery wait loading content (2)
- how to get data from another website php (2)
- load website using jquery (2)
- jquery load content from another domain (2)
- jquery wait for javascript (2)
- how to grab content from other site using jquery (2)
- jquery load another webpage (2)
- how to insert dynamic textbox value in database in php (2)
- load webpage with jquery (2)
- jquery load a webpage (2)
- jquery get content from another web page (2)
- jquery get content from other website (2)
- jquery get content of webpage (2)
- jquery get data from another web page (2)
- load another page content with load (2)
- load page content jquery (2)
- load page content with jquery (2)
- load another webpage (2)
- load video in web page using jquery (2)
- jquery getting data from another website (2)
- load content from another website (2)
- jquery load (2)

