如何从外部iframe小部件中删除锚点

时间:2018-10-27 07:19:42

标签: javascript html css wordpress iframe

我已经嵌入了一个外部iFrame小部件,该小部件也可以单击。由于我将其用作英雄标题,因此如果整个内容都链接到外部页面,这很奇怪。

因此,尝试移除锚点,并且理想情况下还更改类和id。

<div id="thewidgetidname" style="background-image:url(https://theurltothesourcefile)" class="thecustomclass "><div id="thecustomid"><video id="anothercustomid" autoplay="" loop="" preload="" playsinline="" muted="" poster="" class="video landscape desktop"><source src="oneofthevariantsurl1" type="video/mp4">
<source src="oneofthevariantsurl2" type="video/mp4">
<source src="oneofthevariantsurl3" type="video/mp4">
<source src="oneofthevariantsurl4" type="video/mp4">
</video>
</div>
<a href="thelinkthatIwanttoremove" target="_parent" class="anotherclassthatIwouldliketochange">A text that I would like to remove or change</a></div>

我怀疑将需要Javascript。我正在使用具有Avada主题和Fusion Builder的wordpress。我可以注入代码块和自定义CSS。我不确定对jQuery的支持。

我自己的尝试是注入以下代码块,纯粹是为了删除anchor属性。

<script>
document.getElementsByClassName('anotherclassthatIwouldliketochange').removeAttribute("href");
</script>

非常感谢您!

0 个答案:

没有答案