user1100509
user1100509

Reputation:

How to force all links to open in iframe

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

Answers (1)

Leri
Leri

Reputation: 12525

You can use jQuery:

$(document).ready(function(){
   $('a').attr('target', 'iframeNameHere');
});

Here little sample.

Upvotes: 2

Related Questions