If I want to display the same div in different positions dynamically on my page, how can I achieve that?
My page has a table with two rows and two columns, each containing an Embed button. When these buttons are clicked, a div is shown with a list of sites, which occurs dynamically for four buttons.
Below is the HTML code:
<table class="allListTbl" id="appListTbl">
<tr>
<td colspan="4" align="center">
<marquee behavior="alternate" width="55%">
<img src="static/images/yolaLogo70x70.jpg" alt="yola_logo" style="width:35px; height:35px; margin-left:2%;" id="yolaLogo"/>
<img src="static/images/weeblyLogo70x70.jpg" alt="webly_logo" style="width:35px; height:35px; margin-left:2%;" id="weblyLogo"/>
<img src="static/images/godaddyLogo70x70.jpg" alt="godaddy_logo" style="width:35px; height:35px; margin-left:2%;" id="godaddyLogo"/>
<img src="static/images/moonfruitLogo70x70.jpg" alt="moomfruit_logo" style="width:35px; height:35px; margin-left:2%;" id="moomfruitLogo"/>
<img src="static/images/htmlLogo70x70.png" alt="customBuild" style="width:35px; height:35px; margin-left:2%;" id="customBuild"/>
<img src="static/images/jimdoLogo70x70.jpg" alt="jimdoLogo" style="width:35px; height:35px; margin-left:2%;" id="jimdoLogo"/>
<img src="static/images/squarespaceLogo70x70.jpg" alt="squareSpaceLogo" style="width:35px; height:35px; margin-right:1px;" id="squareSpaceLogo"/>
</marquee>
</td>
</tr>
<tr>
<td colspan="2"> </td>
</tr>
<!-- More table content here -->
</table>