hi, i’m using tabbar v1.2 standard edition and i’m getting a js error only on ie. This is the scenario:
* i have an index page where i have two links to different pages (page1.php and page2.php), i use mootools (ajax) to load this pages into a div
* the first page has the tabbar control (page1.php):
get_tabs.php:
<?php
header(“Content-type:text/xml”);
echo “<?xml version=\"1.0\" encoding=\"iso-8859-1\"?>”;
echo “”;
echo “”;
echo “tab1”;
echo “”;
echo “”;
?>
tab1.php
<?php header("Content-Type: text/html; charset=iso-8859-1")?>
<?php
echo “tab1”;
?>
* the second page (page2.php):
<?php header("Content-Type: text/html; charset=iso-8859-1")?>
<?php
echo “page2”;
?>
* the problem occurs when i load page1.php and then page2.php (or any other page), getting the following js error on ie: Line: 624, Character: 4, Error: Object required. (i’m using the js src file)
after this error is shown by ie, it keeps occuring everytime i load any page (page3.php, page4.php if they exist). if i first load page2.php (or any other page without tabbar) everything works fine, the problem starts when i load page1.php (the one with tabbar) and then other page. the error doesn’t affect the operation of pages, but it’s annoying to see the error message in the status bar of ie
i don’t know if the problem is mootools, some kind of incompatibilty with your tabbar, or i’m doing something wrong. please help me
thanks in advance