Guys here we are gonna see how we can load another webpage content using jquery, very simple to use.
Code:
1. HTML Page
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>”;
</body>
</html>
Hope this tutorial helped you a lot.Thanks
Incoming search terms:
- jquery load web page (13)
- jquery get webpage content (8)
- jquery load content from another page (8)
- jquery load webpage (8)
- jquery get content from another page (8)
- jquery load another web page (6)
- jquery load website (5)
- jquery get content from another site (5)
- jquery fetch web page (4)
- jquery load from other website (3)
- jquery load other webpage (3)
- jquery load another website (3)
- jquery load other website (3)
- dynamically load web page in another webpage (3)
- load page content jquery (2)
- load a image from other website using javascript (2)
- jquery Onclick to load data tutorial (2)
- load another webpage using jquery (2)
- how to access another web page using jquery (2)
- how to grab content from other site using jquery (2)
- jquery get content from other website (2)
- jquery wait loading content (2)
- jquery wait for javascript (2)
- how to access web page content from another one using javascript (2)
- jquery get content from another web page (2)
- load another webpage (2)
- jquery load another page (2)
- load page content with jquery (2)
- jquery get data from another web page (2)
- load video in web page using jquery (2)
- load another page content with load (2)
- load another web page with jquery (2)
- jquery load (2)
- load webpage with jquery (2)
- jquery load a webpage (2)
- load website using jquery (2)
- load website with jquery (2)
- jquery getting data from another website (2)
- get contents of another web page javascript (2)
- how to get data from another website php (2)
