у меня ниже 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="/partnerzone/downloadarea/school-information/australia/index.aspx">Australia</a>
</h2>
<p>Land of the sunshine!</p>
</div>
</div>
Теперь, если вы видите href в div ID "txtLink", т.е. Австралия
Я хочу, чтобы во время выполнения страницы те же значения href копировались в вышеуказанный тег div ID "txtCss", я имею в виду, когда моя страница будет отображаться, мой html будет выглядеть так:
<div class="threeimages" id="txtCss">
<a href="/partnerzone/downloadarea/school-information/australia/index.aspx">
<img alt="Australia" src="/Images/Services%20button_tcm7-9688.gif"/>
</a>
<div class="text" id="txtLink">
<h2>
<a href="/partnerzone/downloadarea/school-information/australia/index.aspx">Australia</a>
</h2>
<p>Land of the sunshine!</p>
</div>
</div>
пожалуйста, предложите код для вышеуказанной проблемы