Note that there are some explanatory texts on larger screens.

plurals
  1. POCan't change .top style attribtue in elements of arraylist (javascript)
    primarykey
    data
    text
    <p>I have some images in DIV's that i want to give all the same Top value as the first one in the array (so that they are aligned on one line).</p> <p>I'm having trouble with following code: (addBorder is called when the div's are clicked on)</p> <pre><code>&lt;div class="DRAGGABLE ui-widget-content ui-draggable" style="border: 1px solid red; width: 120px; height: 60px; top: 10px; left: 10px; position: relative;" onclick="addBorder(event)"&gt; &lt;img id="PMF01" src="/devices/AAU01-010.gif"&gt;&lt;/img&gt;&lt;/div&gt; var selectedDivs = new Array(); function addBorder(e) { if ($ctrlBeingpressed == true) { e.target.style.border="5px solid green"; // to show they are selected selectedDivs.push(e.target); } } function orderTop(){ for (i=0;i&lt;selectedDivs.length;i++) { selectedDivs[i].style.top=selectedDivs[0].style.top(); } } &lt;button type="button" onclick="orderTop()"&gt;Top&lt;/button&gt; </code></pre> <p>Generated HTML:</p> <pre><code>&lt;!DOCTYPE html&gt; &lt;html lang="en"&gt; &lt;head&gt; … &lt;/head&gt; &lt;body style="position: absolute; cursor: auto;" application"="" onkeyup="clearPress()&gt; &lt;div id=" onkeydown="controlCheck(event)"&gt; &lt;div id="accordion" class="ui-accordion ui-widget ui-helper-reset" style="position:absolute;top:0px;left:0px;width:300px;height:900px" role="tablist"&gt; … &lt;/div&gt; &lt;div id="buttons" style="position:absolute;top:0px;left:315px;width:1100px;height:50px;border:2px solid grey"&gt; … &lt;/div&gt; &lt;div id="canvas" class="DROPPABLE ui-droppable" style="position:absolute;top:50px;left:315px;width:1100px;height:850px;border:2px solid grey"&gt; &lt;div class="DRAGGABLE ui-widget-content ui-draggable" style="border: 1px solid red; width: 120px; height: 60px; top: 156.117px; left: 188.117px; position: relative;" onclick="addBorder(event)"&gt; &lt;img id="PMF00" src="/devices/AAU01-010.gif" style="border: 5px solid green;"&gt;&lt;/img&gt; &lt;/div&gt; &lt;div class="DRAGGABLE ui-widget-content ui-draggable" style="border: 1px solid red; width: 120px; height: 60px; top: 10px; left: 10px; position: relative;" onclick="addBorder(event)"&gt; &lt;img id="PMF01" src="/devices/AAU01-010.gif"&gt;&lt;/img&gt; &lt;/div&gt; &lt;/div&gt; &lt;/body&gt; &lt;/html&gt; </code></pre>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload