Hello,
i have a fancy script that opens a iframe box for my website.
The issue i am having is that it works perfectly fine on the page, but when i create a table responsive setup, and i add the same link in a tag, it doesn't work and only does a link to the new page in a new window.
Here is my info:
The address book link in the top left - works perfectly
However, the address book link within the responsive table does not
Opens a seperate page
here is my code in the column that works
<div class="col"><a href="account_address_book.asp" class="icon icon-note fancybox fancybox.iframe" dmx-bs-tooltip="'This is where you can add names/emails/cell to your address book for reports'" data-trigger="hover" data-placement="top" data-html="true">Address Book</a>
</div>
Here is my code within the responsive table that doesn't work
<td>
<div class="col"><a href="account_address_book.asp" class="icon icon-note fancybox fancybox.iframe" dmx-bs-tooltip="'This is where you can add names/emails/cell to your address book for reports'" data-trigger="hover" data-placement="top" data-html="true">Address Book</a>
</div>
</td>
any ideas why this is occuring?