I used the following jQuery example which works like a charm. However it appends the results. What do I need to change to replace the results instead of appending?

link|improve this question

74% accept rate
feedback

2 Answers

up vote 7 down vote accepted

you could empty the element before you append

$("#results").empty().append(myHtml);

or use the html method

$("#results").html(myHtml)
link|improve this answer
feedback

Just change

$('#results').append(myHtml);

to

$('#results').html(myHtml);
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.