I want to access a class in html code as
<id="main" class="cop">
<div class="body">
<table class="" summary="">
<colgroup class="game_title">//1
<col class="thumb">
<col class="game_title">//2
</colgroup>
<tbody class="">
<tr class="game">
<td class="thumb">
<a rel="nofollow" href=""><img src="" alt="Grudger thumbnail"></a>
</td>
<td class="game_title">//3
**<div class=**"game_title"**><a href="">Grudger</a></div>//I want to access this class only**
I used code as
Element INFORM = source.getElementById("main").getAllElementByclass("game_title");
for accessing class game_title having element Gruger
but this code not help.
