﻿// JavaScript Document


$(function(){
	$.ajax({
		url: "http://www.talex.co.jp/cgi-bin/testblog2/data/text.js",
		async: true,
		cache: false,
		dataType:"text",
		success: function(doc){
//alert( "Data Read: " + doc );
				$(doc).find('img').each(function(i){
				//取得件数
				if ( i > 0 ) {
                    return false;
                }

//alert( $(this)[0].href );
//alert( $(this)[0].getAttribute("src") );
//alert( $(this)[0].getAttribute("width") );
//alert( $(this)[0].getAttribute("height") );

				var imagedata = $(this)[0].getAttribute("src");

				$('#feedimage').append('<img src="' + imagedata + '" width="225" />');


    		});
		}
	});
});

