I have table with following structure:
<table class="table-info" border='1px' >
<tr >
<td class="view" style='background:red; width:100px' ></td>
<td>6</td>
<td><span class="title" style="cursor: pointer">Some title</td>
<td title="url"><a href="#" target="_blank">088835522112</a></td>
<td>AUDIO</td>
<td><input class="input-text" type="text" value=""></td>
</tr>
<tr >
<td class="view" style='background:red; width:100px' ></td>
<td>6</td>
<td><span class="title" style="cursor: pointer">Some title</td>
<td title="url"><a href="#" target="_blank">088835522112</a></td>
<td>AUDIO</td>
<td><input class="input-text" type="text" value=""></td>
</tr>
<tr >
<td class="view" style='background:red; width:100px' ></td>
<td>6</td>
<td><span class="title" style="cursor: pointer">Some title</td>
<td title="url"><a href="#" target="_blank">088835522112</a></td>
<td>AUDIO</td>
<td><input class="input-text" type="text" value=""></td>
</tr>
</table>
I want to visualize the value of the input field in "td class='view'". How can I do this with jQuery?