Say I have a page a.html
and want to retrieve a text element's text using it's id <p id="name">NAME</p>
element from another page b.html
.
Using jQuery's get
method, it's pretty simple:
$.get('a.html', null, function(text){
alert($(text).find('#name'));
});
Raw XHR Request (by popular demand):
var request = new XMLHttpRequest();
request.addEventListener("load", function(evt){
console.log(evt);
}, false);
request.open('GET', 'a.html', true),
request.send();
You need to:
This is quite a lot of work. jQuery will do most of the work for you:
jQuery('#element_to_load_content_into').load('a.html#name'); // Note use of fragment identifier
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With