i am a jquery learner ,
My table
<table id="table">
<tr >
<th>column 1</th>
<th>Address</th>
<th>column 3</th>
</tr>
<tbody>
<tr>
<td>test data</td>
<td class="address">My compnay, \n New Hil \n
six singama \n India
</td>
<td>some data</td>
</tr>
<tr>
<td>test data</td>
<td class="address">New Branch, \n New Hil \n
six singama \n India
</td>
<td>some data</td>
</tr>
<tr>
<td>test data</td>
<td class="address">Some company, \n New arcade \n
six singama \n India
</td>
<td>some data</td>
</tr>
</tbody>
Second column of each row has a address which contain \n character in it, i want to replace \n
with <br>
tag on loading the page (when document is ready)
$( document ).ready(function() {
var columns = $('tr').find('td:eq(2 )')
});