ajax リクエストを使用して取得した html 文字列からドキュメント オブジェクトを作成する方法。
$.ajax({
url: mylist.url, //url to a webpage
cache: false,
}).done(function(webpage) {
var doc = document.implementation.createHTMLDocument(webpage) //this doesn't work
});
ajax リクエストを使用して取得した html 文字列からドキュメント オブジェクトを作成する方法。
$.ajax({
url: mylist.url, //url to a webpage
cache: false,
}).done(function(webpage) {
var doc = document.implementation.createHTMLDocument(webpage) //this doesn't work
});