Jump to content

Loading content from a div in another html document


sorenchr

Recommended Posts

Hi guys

 

I have a html document called test1.html, with the following code:

 

<html>
<body>

<script type="text/javascript">
function ajaxFunction(userstr)
{

var xmlhttp;
xmlhttp=new XMLHttpRequest();


xmlhttp.onreadystatechange=function()
{
if(xmlhttp.readyState==4)
  {
  document.content.innerHTML = xmlhttp.responseText;
  }
}

xmlhttp.open("GET", "test2.html",true);
xmlhttp.send(null);
}
</script>

<div id="content"></div>

</body>
</html>

 

And another document called test2.html with the following code:

 

<html>
<body>

<div id="block1">aaa</div>
<div id="block2">bbb</div>
<div id="block3">ccc</div>

</body>
</html>

 

The script loads all of the divs from test2 into the "content" div on the test1 page at the moment. What I need it to do however, is to load only the content from the div "block2", so that the "content" div will read "bbb". How do I do that?

 

Thanks!

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.