Load IFRAME onClick
问题 I have IFRAMEs loading onClick. The problem with the following script is that always loads the content of the first iframe, while I'm expecting to load JUST the right iframe when I click on the relative link. $('.toggle-next-div').click(function(){ var iframe = $("#myiFrame"); iframe.attr("src", iframe.data("src")); }); HTML <a href="#" class="toggle-next-div">Map</a>// iframe (1) <iframe id="myiFrame" data-src="my-url" src="about:blank"></iframe <a href="#" class="toggle-next-div">Map</a>//