In my website there is a table. I want to read the data from the 1st row 1st column of the table. Please tell me how can I read ? I have my QWebView. Please help. Thanks

Qt Code:
  1. connect(m_WebView, SIGNAL(loadFinished(bool)), this, SLOT(LoadFinishedCB(bool)));
  2.  
  3. m_WebView->setUrl(QUrl("http://www.mywebsite.com"));
To copy to clipboard, switch view to plain text mode 

In LoadFinishedCB I want to read the data. Please help.