Mulled Wine

Home

Pictures

Mulled Wine, including mulled wine in my blog, mulled wine in Folkestone, and any mentions of mulled wine in my family tree. Also there's a feed of mulled wine stories / mentions, a JSON feed of mulled wine, a KML feed of mulled wine , search my mulled wine venue info, mulled wine on Your Folkestone. Hope you can find what you're looking for, if not please leave a message about mulled wine.

Add mulled wine as a venue here, help me out, and the next person.

Blog / forum etc:

Mulled wine! And BEER!

Oct31
Recommended / related

Barbecue tomorrow with added booze, to wash away the pain of this javascript...

This one's mostly for Dean, I know he likes to hear about how hard we're working at work. We're having another one of our fun days tomorrow, one last barbecue to celebrate a big deal working out, and everyone working hard to make it happen. Also, you would have to say that it's pretty much the end of the summer now. It's dark outside now but I'm sure it was quite a nice day, but hey just the fact that it's DARK at this time tells you that not even global warming can stop us slipping into winter. We were already told that there would be tomorrow at the barbie, and an excess of puddings, but even better I just saw someone wheeling a barrel of beer through the office. Happy halloween everyone.

This one's not so much for Dean, it is an annoying programming thing that I've just sort of worked out. Been having an issue today where a really simple javascript thing was failing, on Safari only. I just wanted to trigger an onclick event on a link, make as if someone had clicked a link if something happened. I'm using jQuery so I ought to be able to do just

$(this).click()

and that works fine, but not in Safari (the shit Mac browser that people use by default at work)... This is how I'm getting around it, but I shouldn't have to do this, should I?

if ( $.browser.safari ) { eval( $( this ).attr( 'onclick' )) } else { $( this ).click() }

:: Comment / reply