Gossamer Forum
Home : Products : Gossamer Links : Development, Plugins and Globals :

Re: [Andy] ajax rating system

Quote Reply
Re: [Andy] ajax rating system In reply to
I only had an error in Firefox, but I figured out what was causing the error, I just don't know why:

Code:
<script type="text/javascript">
//<![CDATA[
registerEvent(window, 'onload', function () {
var loginbar = document.getElementById('loginbar');
if (!loginbar)
return;
var loginlink = loginbar.firstChild;
if (loginlink.className != 'out')
return;
var cookies = document.cookie.split(';');
for (var i = 0; i < cookies.length; i++) {
if (cookies.match(/^\s*<%config.user_cookie_prefix%>s=[0-9a-f]{32}\s*$/)) {
loginlink.href = '<%config.db_cgi_url%>/user.cgi?logout=1';
loginlink.className = 'in';
loginlink.firstChild.nodeValue = 'Logout';
break;
}
}
});
//]]>
</script>


This login/logout javascript somehow messes up the AJAX part of the rate script, but only in firefox. If you know why it does this or how to rewrite the code, let me know.

Thanks,

- Jonathan

Last edited by:

jdgamble: Jun 6, 2009, 10:48 AM
Subject Author Views Date
Thread ajax rating system jdgamble 45207 May 26, 2009, 1:24 PM
Post Re: [jdgamble] ajax rating system
Andy 44682 May 27, 2009, 12:34 AM
Thread Re: [jdgamble] ajax rating system
Andy 44705 May 27, 2009, 12:45 AM
Thread Re: [Andy] ajax rating system
tora 28623 Apr 8, 2018, 4:02 AM
Thread Re: [tora] ajax rating system
Andy 28562 Apr 11, 2018, 12:08 AM
Post Re: [Andy] ajax rating system
tora 28520 Apr 11, 2018, 12:46 AM
Thread Re: [Andy] ajax rating system
tora 28567 Apr 11, 2018, 12:52 PM
Thread Re: [tora] ajax rating system
Andy 28541 Apr 12, 2018, 12:59 AM
Post Re: [Andy] ajax rating system
tora 28502 Apr 12, 2018, 1:21 AM
Thread Re: [jdgamble] ajax rating system
tandat 44651 May 27, 2009, 4:53 AM
Thread Re: [tandat] ajax rating system
jdgamble 44636 May 27, 2009, 8:08 AM
Thread Re: [jdgamble] ajax rating system
Andy 44613 May 27, 2009, 8:31 AM
Thread Re: [Andy] ajax rating system
jdgamble 44623 May 27, 2009, 10:38 AM
Thread Re: [jdgamble] ajax rating system
Andy 44672 May 27, 2009, 10:44 AM
Thread Re: [Andy] ajax rating system
jdgamble 44545 May 29, 2009, 11:34 AM
Thread Re: [jdgamble] ajax rating system
Matthias70 44570 May 29, 2009, 11:44 AM
Thread Re: [Matthias70] ajax rating system
jdgamble 44539 May 29, 2009, 6:55 PM
Thread Re: [jdgamble] ajax rating system
jdgamble 44504 May 29, 2009, 10:15 PM
Thread Re: [jdgamble] ajax rating system
jdgamble 44491 May 30, 2009, 7:22 PM
Thread Re: [jdgamble] ajax rating system
Andy 44604 May 31, 2009, 1:58 AM
Thread Re: [Andy] ajax rating system
jdgamble 44417 Jun 6, 2009, 10:48 AM
Thread Re: [jdgamble] ajax rating system
Andy 44506 Jun 6, 2009, 11:05 AM
Thread Re: [Andy] ajax rating system
jdgamble 44470 Jun 6, 2009, 12:42 PM
Post Re: [jdgamble] ajax rating system
Andy 44444 Jun 6, 2009, 11:58 PM