Reputation:
Is there a way of forcing every link to open in an iframe? I have control of some of the websites I want to show but not others. I am willing to use php or javascript.
Thanks
Upvotes: 1
Views: 1384
Reputation: 12525
You can use jQuery:
$(document).ready(function(){ $('a').attr('target', 'iframeNameHere'); });
Here little sample.
Upvotes: 2