vote up 0 vote down star

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?

flag

79% accept rate

2 Answers

vote up 3 vote down check

you could empty the element before you append

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

or use the html method

$("#results").html(myHtml)
link|flag
vote up 2 vote down

Just change

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

to

$('#results').html(myHtml);
link|flag

Your Answer

Get an OpenID
or

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