У меня ниже html:
<div class="threeimages" id="txtCss">
<a>
<img alt="Australia" src="/Images/Services%20button_tcm7-9688.gif"/>
</a>
<div class="text" id="txtLink">
<h2>
<a href="#" onclick="location.href='https://stackoverflow.com/partnerzone/downloadarea/school-information/australia/index.aspx'; return false;">Australia</a>
</h2>
<p>Land of the sunshine!</p>
</div>
</div>
Теперь, если вы видите, что в div ID "txtLink" есть href. Australia
Я хочу, чтобы это во время выполнения страницы те же самые значения href копировались в вышеуказанный тег div ID "txtCss", я имею в виду, когда моя страница будет отображаться, мой html будет выглядеть следующим образом:
<div class="threeimages" id="txtCss">
<a href="#" onclick="location.href='https://stackoverflow.com/partnerzone/downloadarea/school-information/australia/index.aspx'; return false;">
<img alt="Australia" src="/Images/Services%20button_tcm7-9688.gif"/>
</a>
<div class="text" id="txtLink">
<h2>
<a href="#" onclick="location.href='https://stackoverflow.com/partnerzone/downloadarea/school-information/australia/index.aspx'; return false;">Australia</a>
</h2>
<p>Land of the sunshine!</p>
</div>
</div>
предложите некоторый код для вышеуказанной проблемы