
11-18-2006, 05:51 PM
|
 |
|
|
Join Date: Aug 2003
Location: Canada
Posts: 2,845
Благодарил(а): 0 раз(а)
Поблагодарили:
0 раз(а) в 0 сообщениях
|
|
Quote:
Originally Posted by itsid
MissKalunji please edit the template sid_hide_noaccess
what looks like this:
PHP Code:
<if condition="$vboptions[disable_ajax] != 2 AND $vboptions[sid_hide_ajax_on] == 1">
<script type="text/javascript">
window.clearInterval(hide_aktiv);
var hide_aktiv = window.setInterval("findposts(fetch_object('posts'),'$hide_call')", 3000);
</script>
</if>
<div id="horst_fieldset"><fieldset>
<legend><span class="highlight">$vbphrase[sid_hide_post_hide]</span></legend>
$hide_img
</fieldset></div>
into this (maybe that'll do better on IE)
PHP Code:
<if condition="$vboptions[disable_ajax] != 2 AND $vboptions[sid_hide_ajax_on] == 1">
<script type="text/javascript">
if (hide_aktiv){
window.clearInterval(hide_aktiv);
}
var hide_aktiv = window.setInterval("findposts(fetch_object('posts'),'$hide_call')", 3000);
</script>
</if>
<div id="hide_fieldset"><fieldset>
<legend><span class="highlight">$vbphrase[sid_hide_post_hide]</span></legend>
$hide_img
</fieldset></div>
My IE just doesn't do anything if it doesn't find the object that was referred to, maybe you've another javascriptengine than me (SUN 1.4.something)
'sid
ps lol the fieldset has still the ajax-test-id ... just cosmetics, no issues
|
ok javascript error done
but i still have to refresh.... :-/
|