I thought that using .append function previous finding specifyc content in a .json file it will returns only one time content if i put .empty property of a div before .append once again. BUT I'M WRONG.

I think there must be a function stopping these cycle but I dont get it.

    $('#mn_1').live('click', function() {
        $('#tt_mn').text("");
        var idx = $(this).data('articleidx');
        $.getJSON("auth/data_prod.json", function(data) {
            $("<p class='prod_c'>" + data.articles[idx].title + "</p>").appendTo("#tt_mn");
        });
    });

at document.ready

$(document).ready( function() {
    $('#tt_mn').text("");
}); 

thank you very much.

link|improve this question

72% accept rate
Please create a jsFiddle illustrating the problem. (Store your JSON to a variable) – anstosa Jan 21 at 18:05
feedback

2 Answers

up vote 2 down vote accepted

try using html() in the callback it will replace the previous data with the new one you have provided

$("#tt_mn").html($("<p class='prod_c'>" + data.articles[idx].title + "</p>"));

DEMO

link|improve this answer
feedback

Not really sure I understand the question, but is the problem emptying the div before appending?

I'll give it a shot anyways

$(document).on('click', '#mn_1', function() {
    var idx = $(this).data('articleidx');
    $.getJSON("auth/data_prod.json", function(data) {
        $("#tt_mn").html("<p class='prod_c'>" + data.articles[idx].title + "</p>");
    });
});
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.