forum

Home / DeveloperSection / Forums / using get method fetching html data, getting wrong response result

using get method fetching html data, getting wrong response result

Anonymous User202611-May-2013
Hi Expert!

I am using jQuery get method to load html's data to store in to my array, for that i use this method:

line of code are given

var temps = function(views){
    var tempts = [];
    $.each(views, function(i,view){
    if(view){
        tempts.push($.get("templates/" + view + ".html"), function(data){
        console.log(data);//i am not getting response text.. getting array object.
    })
}
})

while I console the data i am getting a array object as like this:

[Object { readyState= 4,  responseText="<div id="login">\n  <form...eldset>\n   </form>\n</div>",  status=200,  more...}, function()]

please help me!
Thanks in advance!


Updated on 11-May-2013
I am a content writter !

Can you answer this question?


Answer

1 Answers

Liked By