//-----plik main.js-----

function select_feed(opt)
{
	var id = "";
	if(opt==0)//wywolanie domyslne
	{
		id = $('#feed').val();
	}
	else//reczny wybor indeksu feed'a
	{
		id = 0;
	}
	//obrazek ładowania
	$('#rss').html("<tr><td id='loading'><img src='images/loading.gif'/></td></tr>");
	
	//pobieramy
	$.ajax({
	   type: "POST",
	   url: "./controller/rss_ajax.php",
	   data: "id="+id,
	   success: function(msg){
		 $('#rss').html(msg);
	   },
		 error: function(xhr, status, error) {
                    console.log(" ==== error ===");
                    console.log("xhr.status: " + xhr.status);
                    console.log("xhr.statusText: " + xhr.statusText);
                    console.log("status: " + status);
                    console.log("error: " + error);
                },
	 });
}

