ajax paginate not working on firefox 2.0
well
i am doing this
PHP Code:
<script type="text/javascript">
var bookonflowers={
pages: [<?php
for ($i=0; $i<$total_pages; $i++)
{ $start = $display * $i;
if ($i==0)
{
echo "\"fetchallusersphotos.php?block=1&start=$start&display=$display\"";
}
else
{
echo ",\"fetchallusersphotos.php?block=1&start=$start&display=$display\"";
}
}?>],
selectedpage: 0 //set page shown by default (0=1st page)
}
var bookonanimals={
pages: [<?php
for ($i=0; $i<$total_pages1; $i++)
{ $start1 = $display * $i;
if ($i==0)
{
echo "\"fetchallusersphotos.php?block=2&start=$start1&display=$display\"";
}
else
{
echo ",\"fetchallusersphotos.php?block=2&start=$start1&display=$display\"";
}
}?>],
selectedpage: 0 //set page shown by default (0=1st page)
}
on this
http://www.dynamicdrive.com/dynamici...nate/index.htm
but it works fine on IE6 but it fails in firefox
ie
first tabset shows
but when i click on second tab(animal..)..though it has some contents it shows same old content of tab 1 (flower..)
so what kind be matter with it...
thanks