Answers for "open iframe after click of link"

0

Change iframe src by clicking a link

<a href="foo.html" target="myiframe">Foo</a>
<a href="bar.html" target="myiframe">Bar</a>
<a href="baz.html" target="myiframe">Baz</a>

<iframe name="myiframe"></iframe>
Posted by: Guest on October-29-2021
0

open iframe on button click

function postYourAdd () {
    var iframe = $("#forPostyouradd");
    iframe.attr("src", iframe.data("src")); 
}
Posted by: Guest on July-18-2020

Code answers related to "open iframe after click of link"

Browse Popular Code Answers by Language