var updater = new Ajax.PeriodicalUpdater('quotations', '/Quotations',
{
frequency: $F('refreshRate'),
decay: 1,
method: 'post',
postBody: 'topicId=${newsItemId}&componentId=$
{component.componentId}&html='+escape(document.getElementById('quotations').innerHTML),
onComplete: TableKit.load
}
);
$F('refreshRate') is read from:
<form action="#">
<select id="refreshRate">
<option value="0">0</option>
<option value="60">1</option>
<option value="180">3</option>
<option value="300">5</option>
</select>
</form>
this works just fine in Opera, but doesn't work at all in IE 6 and
Firefox 3.
am I doing something wrong?
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Prototype & script.aculo.us" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/prototype-scriptaculous?hl=en
-~----------~----~----~----~------~----~------~--~---