Note that there are some explanatory texts on larger screens.

plurals
  1. POJQuery Rounded Corners in Internet Explorer (IE) messed up
    primarykey
    data
    text
    <p>I'm using JQuery's jquery.corner.js to create rounded corners on some td tags, and they look fine in IE EXCEPT </p> <ol> <li>if you open a new tab and then come back to the page</li> <li>if you go to another tab, click a link, then come back to the page</li> <li>if you hover over a javascript-executing div / menu (I think).</li> </ol> <p>The rounded corners are replaced with horizontal lines, and text within the td tag is pushed down. Once the page is refreshed, however, the rendering is back to normal. In all cases it works perfectly in Firefox.</p> <p>Any ideas?</p> <p>For reference, the Javascript code I'm using is as follows (it's a MOSS 2007 page):</p> <pre><code>$(document).ready(function(){ $("table.ms-navheader td").corner("top"); }); </code></pre> <p>Here's a sample HTML page that displays the problem perfectly:</p> <pre><code>&lt;html&gt; &lt;head&gt; &lt;script type="text/javascript" src="jquery-1.2.6.js"&gt;&lt;/script&gt; &lt;script type="text/javascript" src="jquery.corner.js"&gt;&lt;/script&gt; &lt;script type="text/javascript"&gt; &lt;!-- $(document).ready(function() { $("div").corner("top"); $("td").corner(); }); //--&gt; &lt;/script&gt; &lt;/head&gt; &lt;body&gt; &lt;table&gt; &lt;tr&gt; &lt;td style="background-color: blue"&gt; TD that will be messed up. &lt;/td&gt; &lt;/tr&gt; &lt;/table&gt; &lt;div style="background-color: green"&gt; divs don't get messed up. &lt;/div&gt; &lt;/body&gt; &lt;/html&gt; </code></pre> <p>In the above code, the TD will be messed up once you open up a new tab, but not the div. I don't have much control over the HTML emitted by MOSS, otherwise I might have bitten the bullet and used DIVs here instead of a table.</p>
    singulars
    1. This table or related slice is empty.
    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.
 

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