Hi all,

I have a simple symbian qt application and i'm using QML to dysplay a webpage.

here is my code

Qt Code:
  1. WebView {
  2. property string urlString: "http://google.it"
  3. settings.javascriptEnabled: true
  4. id: web_view1
  5. x: 0
  6. y: 0
  7. width: 360
  8. height: 610
  9.  
  10. url: urlString
  11. }
To copy to clipboard, switch view to plain text mode 

Now this works well and sysplay the webpage correctly, but wen i try to follow a link in the page the new content is overlapped to the first one.

Any suggestions?

Thanks for helps.