tabbar not displaying in ff, ie7 and ie8 (works in chrome)

Hello everyone,

I’m trying to get tabbar working with iframes, and can only seem to get it to load in Chrome.

Contents of test.html:

[code]

blah
[/code]

Contents of test.xml:

<?xml version="1.0"?> <tabbar hrefmode="iframes-on-demand"> <row> <tab id="t1" width='*' href="http://google.ca">Google</tab> </row> </tabbar>

I do not get any errors in FF, however I do get ‘this.entBox’ is null or not an object in IE.

Would anyone happen to have any ideas what I am doing wrong?

Thanks

Hello,

you have missed tag. Moreover, if the sizes of container are set in percent, make sure that they are correct (probably you will need to add style for body):

[code]

blah html,body{ width:100%; height:100% }
[/code]

It works! Thank you very much Alexandra.