tags:

views:

121

answers:

1

When I insert records with jQuery("#table").append(..) in a table, taking the height and width of the table jQuery("#table").width() or jQuery("#table").height(), is not updated. If before taking that write "alert('something');", it works well.

A: 

Unbelievable, here is the problem

-moz-binding: url('./assets/xml/ellipsis.xml#ellipsis');

Code for file: "ellipsis.xml"

<?xml version="1.0"?>
<bindings
  xmlns="http://www.mozilla.org/xbl"
  xmlns:xbl="http://www.mozilla.org/xbl"
  xmlns:xul="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"&gt;
    <binding id="ellipsis">
     <content>
      <xul:window>
       <xul:description crop="end" xbl:inherits="value=xbl:text"><children/></xul:description>
      </xul:window>
     </content>
    </binding>
</bindings>

Building the example I did not include the file and there I could see the problem.

thanks

andres descalzo