Ajax Database Selector

Home

Pictures

Ajax Database Selector, including ajax database selector in my blog, ajax database selector in Folkestone, and any mentions of ajaXXX database select0r in my family tree. Also there's a feed of ajax database selector stories / mentions, a JSON feed of ajax database selector, a KML feed of ajax database selector , ajax database selector on Your Folkestone. Hope you can find what you're looking for, if not please leave a message about ajax database selector.

Add ajax database selector as a venue here, help me out, and the next person.

Blog / forum etc:

Fastr

Jan26

Pictures

Fastr - a game based on flickr... guess the common tag of the pictures that appear, the quicker you do the more points you get.

Got to do more work on my ajax database selector today - when you come back to a form to edit it, the selector is just BLANK, though there is a numerical value hidden in there. Need to make it show something sensible, ideally without it doing another request in the background. But maybe that will be the easiest way...

More , just look at their graph on popex:

7 days of the Arctic Monkeys

That's a bit faint as it's meant to be seen on the dark popex background... anyway, see that constant climbing. Going to be a number one this week in the album charts too, this means even more dividends next week, which means more of a climb... in the past shares like have gone up to a hundred quid or more, think I might be sticking with these for a while. If you're not signed up to popex, then please do. It's free and that, and it's my day job.

:: Comment / reply

More Javascript

Nov17
Recommended / related

Found the source of my problem with internet explorer, it's with

var c = obj.getAttribute('class');
need to replace it with
var c = getAttribute(obj,'class');
function getAttribute( elm, aname ) {
var avalue = elm.getAttribute( aname );
if ( ! avalue ) {
for ( var i = 0; i < elm.attributes.length; i ++ ) {
var taName = elm.attributes[i].name.toLowerCase();
if ( taName == aname ) {
avalue = elm.attributes[i].value;
}
}
}
return avalue;
}

Not sure why internet explorer isn't picking up getAttribute reliably, but it's not. Had to rewrite setAttribute in a similar way too. Oh yeah, very first search result above solves things in a much smarter way...

SO, hopefully, when this page loads a script runs through it checking for posts older than your last visit (currently only logging the last time you posted), and shrinking them down. It pops some admin links into posts too, but you'd only see them if you were logged in. Source code is here, not that it's terribly useful to anyone. Known bugs right now are the multiple + and - links being attached to replies to replies, and I need to check the date of the latest reply to a post, instead of just the date of the message, and I don't really want to shrink a post down if it's the only one on a page. Probably want to leave the first post expanded if they following the rules above shrinks them all down too... It's a laugh though innit...

UPDATE: WOO, my little icons line up nicely now on my popup database selector thing that I use all over the shop... go play popex or join popex or go to add a new event to the Folkestone Gerald calendar to see it slotting neatly into place.

Inspired by this I'm off to do more !

:: Comment / reply