Hi Qt gurus,

I have a performance question.

I'm trying to design a high speed "QWebFrame Html append function":

Qt Code:
  1. QWebView::page()->mainFrame()->evaluateJavaScript(
  2. QString("document.getElementById('%1').innerHTML += '%2'").
  3. arg(QString::number((int) chunk)).
  4. arg(html));
To copy to clipboard, switch view to plain text mode 

After adding a few lines (1000x) it's getting very slow.

What would be the proper routine for doing that ?