Note that there are some explanatory texts on larger screens.

plurals
  1. POjQuery Position() not run on $(document).ready()?
    text
    copied!<p>i am using the jQueryUI Position Utilities, but i don't know why it not run on $(document).ready(), if i use firebug and execute the position(); again manually, it work fine.</p> <p><strong>Update: I try that code only not work on IE8, it work on firefox and chrome.</strong></p> <p>The code on : <a href="http://jsbin.com/owoya3/edit" rel="nofollow">http://jsbin.com/owoya3/edit</a></p> <pre><code>&lt;!DOCTYPE html&gt; &lt;html&gt; &lt;head&gt; &lt;script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"&gt;&lt;/script&gt; &lt;script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.0/jquery-ui.min.js"&gt;&lt;/script&gt; &lt;style type="text/css"&gt; #Parent { width: 300px; background-color: #999; border: 1px solid #aaa; } #Parent tr td { width: 60px; height: 60px; text-align: center; border: 1px solid #aaa; } div.positionable { width: 60px; height: 60px; position: absolute; display: block; right: 0; bottom: 0; background-color: #bcd5e6; text-align: center; } &lt;/style&gt; &lt;script type="text/javascript"&gt; function position() { $("#BoxA").position({ of: $("#CellA"), my: 'left top', at: 'left top', offset: '0 0' }); } $(document).ready(function () { $(".positionable").css("opacity", 0.5); position(); }); &lt;/script&gt; &lt;title&gt;&lt;/title&gt; &lt;/head&gt; &lt;body&gt; &lt;table id="Parent"&gt; &lt;tr&gt; &lt;td id="CellA"&gt;A&lt;/td&gt; &lt;td id="CellB"&gt;B&lt;/td&gt; &lt;/tr&gt; &lt;/table&gt; &lt;div id="BoxA" class="positionable"&gt; &lt;p&gt;A(2)&lt;/p&gt; &lt;/div&gt; &lt;div id="BoxB" class="positionable"&gt; &lt;p&gt;B(2)&lt;/p&gt; &lt;/div&gt; &lt;/body&gt; &lt;/html&gt; </code></pre>
 

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