Hi
I have some html which I saved in .html file. I am trying to load this using below jquery function
$('#portfolio').load('Grocery.html'); .
When I am using above code my anchor tag is not working. Please help me on resolving this issue.
<table style="border-collapse: separate; border-spacing:70px 5px;" >
<tr>
<th>
Flour&Grains
</th>
<th>
Rice&Poha
</th>
<th>
Salt&Sugar
</th>
<th>
Oil&Ghee
</th>
</tr>
<tr>
<td>
<a href="
WebForm2.aspx">Wheat Flour (Atta)</a>
</td>
<td>
<a href="WebForm2.aspx"> Rice (Chawal)</a>
</td>
<td>
<a href="WebForm2.aspx"> Salt </a>
</td>
<td>
<a href="WebForm2.aspx"> DesiGhee</a>
</td>
</tr>
</table>