posted by Bobthearch on Wed 13th Feb 2008 01:14
It appears as if the "+" and "-" buttons aren't working most of the time, or they're simply .gif images. My cursor changes as the mouse scrolls over, but clicking on them does nothing.
I have 19 votes remaining currently, the browser IE6, and I've enabled cookies. If anyone can figure this out...
Permalink for comment 693
To read all comments associated with this story, please click here.
To read all comments associated with this story, please click here.
News
Linked by Thom Holwerda on 06/19/13 23:02 UTC, submitted by M.Onty
Linked by Thom Holwerda on 06/19/13 22:28 UTC
Linked by Thom Holwerda on 06/18/13 22:33 UTC
Linked by Anonymous on 06/18/13 22:26 UTC
Linked by Thom Holwerda on 06/18/13 22:25 UTC
Linked by Thom Holwerda on 06/18/13 17:45 UTC
Linked by Thom Holwerda on 06/18/13 17:32 UTC, submitted by poundsmack
Linked by Thom Holwerda on 06/17/13 17:58 UTC
Linked by Thom Holwerda on 06/17/13 17:52 UTC
Linked by Thom Holwerda on 06/14/13 21:03 UTC
More News »
Sponsored Links


3
Member since:
2006-02-05
I just took a peek at the javascript, and you are right, you dont get much more standard then that. did you roll that ajax.js file yourself?
I don't know where your javascripting ability is at, and I realise you probably dont want to redo stuff for no real reason, but I *HIGHLY* recommend checking out jquery (http://jquery.com/), it has become so much a part of my daily life that I don't think I could code javascript without it. It includes a dead simple ajax implementation too (only a fraction of what it does), literally just $.post(url, params, callback). So you could do something like
$.post("mod.php", { uid: "10232", modup: false }, function() { alert("AJAX done!!"); });
which would POST to mod.php with two paramaters (uid, and modup), and execute the anonymous function that does the alert when it completes.
So anyways, feel free to ignore me, but I plug it to pretty much every web guy I run accross.