Ajax Returning to text, not htmlHow can I get jQuery to perform a synchronous, rather than asynchronous, Ajax request?How to manage a redirect request after a jQuery Ajax callAbort Ajax requests using jQueryevent.preventDefault() vs. return falseGet selected text from a drop-down list (select box) using jQueryjQuery AJAX submit formjQuery Ajax File UploadAjax request returns 200 OK, but an error event is fired instead of successIs Safari on iOS 6 caching $.ajax results?How do I return the response from an asynchronous call?

Is there an academic word that means "to split hairs over"?

AD: OU for system administrator accounts

Could a space colony 1g from the sun work?

​Cuban​ ​Primes

Rushed passport - does my reason qualify?

"Counterexample" for the Inverse function theorem

Do high-wing aircraft represent more difficult engineering challenges than low-wing aircraft?

Usage of the relative pronoun "dont"

What technology would Dwarves need to forge titanium?

Roman Numerals Equation 2

Why would company (decision makers) wait for someone to retire, rather than lay them off, when their role is no longer needed?

How can we delete item permanently without storing in Recycle Bin?

Cycling to work - 30mile return

Promotion comes with unexpected 24/7/365 on-call

How come Arya Stark didn't burn in Game of Thrones Season 8 Episode 5

Why is vowel phonology represented in a trapezoid instead of a square?

SHAKE-128/256 or SHA3-256/512

Why are lawsuits between the President and Congress not automatically sent to the Supreme Court

Why does the U.S military use mercenaries?

Non-African Click Languages

How can I make dummy text (like lipsum) grey?

Is there any deeper thematic meaning to the white horse that Arya finds in The Bells (S08E05)?

Why is the marginal distribution/marginal probability described as "marginal"?

Why is so much ransomware breakable?



Ajax Returning to text, not html


How can I get jQuery to perform a synchronous, rather than asynchronous, Ajax request?How to manage a redirect request after a jQuery Ajax callAbort Ajax requests using jQueryevent.preventDefault() vs. return falseGet selected text from a drop-down list (select box) using jQueryjQuery AJAX submit formjQuery Ajax File UploadAjax request returns 200 OK, but an error event is fired instead of successIs Safari on iOS 6 caching $.ajax results?How do I return the response from an asynchronous call?






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;








0















I have a complete code for getting the values from PHP through Jquery AJAX with JSON datatype.
But after ajax done, it doesn't response to html. Its become text.



the result become like this.



$("#category li").one('click', function() 

var catId = $(this).attr("id");

var that = this;

$.ajax(
type: 'GET',
url: '<?php echo base_url()."dashboard/getsubcategory/"; ?>'+catId,
dataType: 'html',
data: category: catId,
beforeSend: function()
$("#loader").show();

)

.done(function(data)
var categories = JSON.parse(data)

$.each(categories, function(k,category)

that.after('<li class="collection-item">'+category.id+'</li>');

);

)
.fail(function()

alert( "Fetch failed." );

);

);



JSON output :



[

"id": "7",
"name": "Blazer & Suits"
,

"id": "8",
"name": "Blouses & Shirts"
,

"id": "9",
"name": "Friendly URL in CodeIgniter"

]


Why it has returning to :



&lt;li class="collection-item"&gt;7&lt;/li&gt;
&lt;li class="collection-item"&gt;8&lt;/li&gt;
&lt;li class="collection-item"&gt;9&lt;/li&gt;


output that I expected is



<li class="collection-item">7</li>
<li class="collection-item">8</li>
<li class="collection-item">9</li>


preview :



http://prntscr.com/n1x0ey



Please help ..



Thank a lot.










share|improve this question



















  • 1





    please post the code. otherwise, nobody can help.

    – Ashkan Mobayen Khiabani
    Mar 23 at 16:36

















0















I have a complete code for getting the values from PHP through Jquery AJAX with JSON datatype.
But after ajax done, it doesn't response to html. Its become text.



the result become like this.



$("#category li").one('click', function() 

var catId = $(this).attr("id");

var that = this;

$.ajax(
type: 'GET',
url: '<?php echo base_url()."dashboard/getsubcategory/"; ?>'+catId,
dataType: 'html',
data: category: catId,
beforeSend: function()
$("#loader").show();

)

.done(function(data)
var categories = JSON.parse(data)

$.each(categories, function(k,category)

that.after('<li class="collection-item">'+category.id+'</li>');

);

)
.fail(function()

alert( "Fetch failed." );

);

);



JSON output :



[

"id": "7",
"name": "Blazer & Suits"
,

"id": "8",
"name": "Blouses & Shirts"
,

"id": "9",
"name": "Friendly URL in CodeIgniter"

]


Why it has returning to :



&lt;li class="collection-item"&gt;7&lt;/li&gt;
&lt;li class="collection-item"&gt;8&lt;/li&gt;
&lt;li class="collection-item"&gt;9&lt;/li&gt;


output that I expected is



<li class="collection-item">7</li>
<li class="collection-item">8</li>
<li class="collection-item">9</li>


preview :



http://prntscr.com/n1x0ey



Please help ..



Thank a lot.










share|improve this question



















  • 1





    please post the code. otherwise, nobody can help.

    – Ashkan Mobayen Khiabani
    Mar 23 at 16:36













0












0








0








I have a complete code for getting the values from PHP through Jquery AJAX with JSON datatype.
But after ajax done, it doesn't response to html. Its become text.



the result become like this.



$("#category li").one('click', function() 

var catId = $(this).attr("id");

var that = this;

$.ajax(
type: 'GET',
url: '<?php echo base_url()."dashboard/getsubcategory/"; ?>'+catId,
dataType: 'html',
data: category: catId,
beforeSend: function()
$("#loader").show();

)

.done(function(data)
var categories = JSON.parse(data)

$.each(categories, function(k,category)

that.after('<li class="collection-item">'+category.id+'</li>');

);

)
.fail(function()

alert( "Fetch failed." );

);

);



JSON output :



[

"id": "7",
"name": "Blazer & Suits"
,

"id": "8",
"name": "Blouses & Shirts"
,

"id": "9",
"name": "Friendly URL in CodeIgniter"

]


Why it has returning to :



&lt;li class="collection-item"&gt;7&lt;/li&gt;
&lt;li class="collection-item"&gt;8&lt;/li&gt;
&lt;li class="collection-item"&gt;9&lt;/li&gt;


output that I expected is



<li class="collection-item">7</li>
<li class="collection-item">8</li>
<li class="collection-item">9</li>


preview :



http://prntscr.com/n1x0ey



Please help ..



Thank a lot.










share|improve this question
















I have a complete code for getting the values from PHP through Jquery AJAX with JSON datatype.
But after ajax done, it doesn't response to html. Its become text.



the result become like this.



$("#category li").one('click', function() 

var catId = $(this).attr("id");

var that = this;

$.ajax(
type: 'GET',
url: '<?php echo base_url()."dashboard/getsubcategory/"; ?>'+catId,
dataType: 'html',
data: category: catId,
beforeSend: function()
$("#loader").show();

)

.done(function(data)
var categories = JSON.parse(data)

$.each(categories, function(k,category)

that.after('<li class="collection-item">'+category.id+'</li>');

);

)
.fail(function()

alert( "Fetch failed." );

);

);



JSON output :



[

"id": "7",
"name": "Blazer & Suits"
,

"id": "8",
"name": "Blouses & Shirts"
,

"id": "9",
"name": "Friendly URL in CodeIgniter"

]


Why it has returning to :



&lt;li class="collection-item"&gt;7&lt;/li&gt;
&lt;li class="collection-item"&gt;8&lt;/li&gt;
&lt;li class="collection-item"&gt;9&lt;/li&gt;


output that I expected is



<li class="collection-item">7</li>
<li class="collection-item">8</li>
<li class="collection-item">9</li>


preview :



http://prntscr.com/n1x0ey



Please help ..



Thank a lot.







jquery ajax






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Mar 23 at 16:53







Henry

















asked Mar 23 at 16:34









HenryHenry

32




32







  • 1





    please post the code. otherwise, nobody can help.

    – Ashkan Mobayen Khiabani
    Mar 23 at 16:36












  • 1





    please post the code. otherwise, nobody can help.

    – Ashkan Mobayen Khiabani
    Mar 23 at 16:36







1




1





please post the code. otherwise, nobody can help.

– Ashkan Mobayen Khiabani
Mar 23 at 16:36





please post the code. otherwise, nobody can help.

– Ashkan Mobayen Khiabani
Mar 23 at 16:36












1 Answer
1






active

oldest

votes


















0














You are storing in the variable that the reference to the Element and using it to append to the document. You should wrap the element before calling the method after.



Furthermore, in your ajax call you are setting the value dataType to html when it seems that you expect a json.



So, wrapping up, your code should look like:



$("#category li").one('click', function() 
var $that = $(this);
var catId = $that.attr("id");

$.ajax(
type: 'GET',
url: '<?php echo base_url()."dashboard/getsubcategory/"; ?>'+catId,
dataType: 'json',
data: category: catId,
beforeSend: function()
$("#loader").show();

)
.done(function(data)
data.forEach(function(category)
$that.after('<li class="collection-item">'+category.id+'</li>');
);
)
.fail(function()
alert( "Fetch failed." );
);
);





share|improve this answer























  • Thank @mgarcia you save my day..

    – Henry
    Mar 23 at 18:10











Your Answer






StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");

StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);

else
createEditor();

);

function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);



);













draft saved

draft discarded


















StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55315944%2fajax-returning-to-text-not-html%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown

























1 Answer
1






active

oldest

votes








1 Answer
1






active

oldest

votes









active

oldest

votes






active

oldest

votes









0














You are storing in the variable that the reference to the Element and using it to append to the document. You should wrap the element before calling the method after.



Furthermore, in your ajax call you are setting the value dataType to html when it seems that you expect a json.



So, wrapping up, your code should look like:



$("#category li").one('click', function() 
var $that = $(this);
var catId = $that.attr("id");

$.ajax(
type: 'GET',
url: '<?php echo base_url()."dashboard/getsubcategory/"; ?>'+catId,
dataType: 'json',
data: category: catId,
beforeSend: function()
$("#loader").show();

)
.done(function(data)
data.forEach(function(category)
$that.after('<li class="collection-item">'+category.id+'</li>');
);
)
.fail(function()
alert( "Fetch failed." );
);
);





share|improve this answer























  • Thank @mgarcia you save my day..

    – Henry
    Mar 23 at 18:10















0














You are storing in the variable that the reference to the Element and using it to append to the document. You should wrap the element before calling the method after.



Furthermore, in your ajax call you are setting the value dataType to html when it seems that you expect a json.



So, wrapping up, your code should look like:



$("#category li").one('click', function() 
var $that = $(this);
var catId = $that.attr("id");

$.ajax(
type: 'GET',
url: '<?php echo base_url()."dashboard/getsubcategory/"; ?>'+catId,
dataType: 'json',
data: category: catId,
beforeSend: function()
$("#loader").show();

)
.done(function(data)
data.forEach(function(category)
$that.after('<li class="collection-item">'+category.id+'</li>');
);
)
.fail(function()
alert( "Fetch failed." );
);
);





share|improve this answer























  • Thank @mgarcia you save my day..

    – Henry
    Mar 23 at 18:10













0












0








0







You are storing in the variable that the reference to the Element and using it to append to the document. You should wrap the element before calling the method after.



Furthermore, in your ajax call you are setting the value dataType to html when it seems that you expect a json.



So, wrapping up, your code should look like:



$("#category li").one('click', function() 
var $that = $(this);
var catId = $that.attr("id");

$.ajax(
type: 'GET',
url: '<?php echo base_url()."dashboard/getsubcategory/"; ?>'+catId,
dataType: 'json',
data: category: catId,
beforeSend: function()
$("#loader").show();

)
.done(function(data)
data.forEach(function(category)
$that.after('<li class="collection-item">'+category.id+'</li>');
);
)
.fail(function()
alert( "Fetch failed." );
);
);





share|improve this answer













You are storing in the variable that the reference to the Element and using it to append to the document. You should wrap the element before calling the method after.



Furthermore, in your ajax call you are setting the value dataType to html when it seems that you expect a json.



So, wrapping up, your code should look like:



$("#category li").one('click', function() 
var $that = $(this);
var catId = $that.attr("id");

$.ajax(
type: 'GET',
url: '<?php echo base_url()."dashboard/getsubcategory/"; ?>'+catId,
dataType: 'json',
data: category: catId,
beforeSend: function()
$("#loader").show();

)
.done(function(data)
data.forEach(function(category)
$that.after('<li class="collection-item">'+category.id+'</li>');
);
)
.fail(function()
alert( "Fetch failed." );
);
);






share|improve this answer












share|improve this answer



share|improve this answer










answered Mar 23 at 17:44









mgarciamgarcia

3967




3967












  • Thank @mgarcia you save my day..

    – Henry
    Mar 23 at 18:10

















  • Thank @mgarcia you save my day..

    – Henry
    Mar 23 at 18:10
















Thank @mgarcia you save my day..

– Henry
Mar 23 at 18:10





Thank @mgarcia you save my day..

– Henry
Mar 23 at 18:10



















draft saved

draft discarded
















































Thanks for contributing an answer to Stack Overflow!


  • Please be sure to answer the question. Provide details and share your research!

But avoid


  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.

To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55315944%2fajax-returning-to-text-not-html%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

Kamusi Yaliyomo Aina za kamusi | Muundo wa kamusi | Faida za kamusi | Dhima ya picha katika kamusi | Marejeo | Tazama pia | Viungo vya nje | UrambazajiKuhusu kamusiGo-SwahiliWiki-KamusiKamusi ya Kiswahili na Kiingerezakuihariri na kuongeza habari

SQL error code 1064 with creating Laravel foreign keysForeign key constraints: When to use ON UPDATE and ON DELETEDropping column with foreign key Laravel error: General error: 1025 Error on renameLaravel SQL Can't create tableLaravel Migration foreign key errorLaravel php artisan migrate:refresh giving a syntax errorSQLSTATE[42S01]: Base table or view already exists or Base table or view already exists: 1050 Tableerror in migrating laravel file to xampp serverSyntax error or access violation: 1064:syntax to use near 'unsigned not null, modelName varchar(191) not null, title varchar(191) not nLaravel cannot create new table field in mysqlLaravel 5.7:Last migration creates table but is not registered in the migration table

은진 송씨 목차 역사 본관 분파 인물 조선 왕실과의 인척 관계 집성촌 항렬자 인구 같이 보기 각주 둘러보기 메뉴은진 송씨세종실록 149권, 지리지 충청도 공주목 은진현